diff --git a/Games/Disney_Trivia/README.md b/Games/Disney_Trivia/README.md new file mode 100644 index 0000000000..8273af6277 --- /dev/null +++ b/Games/Disney_Trivia/README.md @@ -0,0 +1,16 @@ +# **Disney Trivia** + +## **Description 📃** +A fun and engaging trivia game about Disney movies, characters, and history. + +## **How To Play🕹️** +- Click on start button to start and choose the correct option. +- There is time limit of 15 seconds. +- You can restart the game to play again. +- Click on next button for the next question. + +## **Screenshots 📸** + +![Screenshot from 2024-06-06 22-40-36](https://github.com/manmita/GameZone/assets/34617961/6c688ec3-6c67-490f-bd20-da7c419964a7) + + diff --git a/Games/Disney_Trivia/disney_b.jpg b/Games/Disney_Trivia/disney_b.jpg new file mode 100644 index 0000000000..7985e83133 Binary files /dev/null and b/Games/Disney_Trivia/disney_b.jpg differ diff --git a/Games/Disney_Trivia/index.html b/Games/Disney_Trivia/index.html new file mode 100644 index 0000000000..69fec9c32d --- /dev/null +++ b/Games/Disney_Trivia/index.html @@ -0,0 +1,33 @@ + + + + + + Disney Trivia Game + + + +
+

Disney Trivia Game

+
+
Time left: 15 seconds
+
Question text
+
+ + + + +
+
+
+ + +
+
+

Your Score: 0

+
+
+ + + + diff --git a/Games/Disney_Trivia/script.js b/Games/Disney_Trivia/script.js new file mode 100644 index 0000000000..4972bba9bf --- /dev/null +++ b/Games/Disney_Trivia/script.js @@ -0,0 +1,283 @@ +// script.js + +const startButton = document.getElementById('start-btn'); +const nextButton = document.getElementById('next-btn'); +const questionContainerElement = document.getElementById('question-container'); +const questionElement = document.getElementById('question'); +const answerButtonsElement = document.getElementById('answer-buttons'); +const scoreContainer = document.getElementById('score-container'); +const scoreElement = document.getElementById('score'); +const timerElement = document.getElementById('time'); + +let shuffledQuestions, currentQuestionIndex, score, timeLeft, timerInterval; + +// define questions array with question and answer +const questions = [ + { + question: 'What was the first animated feature film released by Disney?', + answers: [ + { text: 'Snow White and the Seven Dwarfs', correct: true }, + { text: 'Cinderella', correct: false }, + { text: 'Sleeping Beauty', correct: false }, + { text: 'Bambi', correct: false } + ] + }, + { + question: 'In "The Lion King," what is the name of Simba\'s father?', + answers: [ + { text: 'Scar', correct: false }, + { text: 'Mufasa', correct: true }, + { text: 'Timon', correct: false }, + { text: 'Pumbaa', correct: false } + ] + }, + { + question: 'What is the name of the toy cowboy in "Toy Story"?', + answers: [ + { text: 'Buzz Lightyear', correct: false }, + { text: 'Jessie', correct: false }, + { text: 'Bullseye', correct: false }, + { text: 'Woody', correct: true }, + ] + }, + { + question: 'Which Disney princess has a pet tiger named Rajah?', + answers: [ + { text: 'Jasmine', correct: true }, + { text: 'Ariel', correct: false }, + { text: 'Belle', correct: false }, + { text: 'Mulan', correct: false } + ] + }, + { + question: 'What does the crocodile swallow in "Peter Pan"?', + answers: [ + { text: 'Captain Hook\'s hook', correct: false }, + { text: 'Peter Pan\'s hat', correct: false }, + { text: 'A clock', correct: true }, + { text: 'A map', correct: false } + ] + }, + { + question: 'What kind of animal is Dumbo?', + answers: [ + { text: 'A mouse', correct: false }, + { text: 'An elephant', correct: true }, + { text: 'A lion', correct: false }, + { text: 'A bear', correct: false } + ] + }, + { + question: 'In "Beauty and the Beast," what is the name of the teapot?', + answers: [ + { text: 'Mrs. Potts', correct: true }, + { text: 'Lumière', correct: false }, + { text: 'Cogsworth', correct: false }, + { text: 'Belle', correct: false } + ] + }, + { + question: 'In which Disney movie do two dogs share a plate of spaghetti?', + answers: [ + { text: '101 Dalmatians', correct: false }, + { text: 'The Fox and the Hound', correct: false }, + { text: 'Lady and the Tramp', correct: true }, + { text: 'Oliver & Company', correct: false } + ] + }, + { + question: 'What is the name of the bear in "The Jungle Book"?', + answers: [ + { text: 'Baloo', correct: true }, + { text: 'Bagheera', correct: false }, + { text: 'Shere Khan', correct: false }, + { text: 'Kaa', correct: false } + ] + }, + { + question: 'Which Disney princess sings "Part of Your World"?', + answers: [ + { text: 'Belle', correct: false }, + { text: 'Cinderella', correct: false }, + { text: 'Rapunzel', correct: false }, + { text: 'Ariel', correct: true }, + ] + }, + { + question: 'In "Aladdin," what is the name of Aladdin\'s pet monkey?', + answers: [ + { text: 'Iago', correct: false }, + { text: 'Abu', correct: true }, + { text: 'Rajah', correct: false }, + { text: 'Sultan', correct: false } + ] + }, + { + question: 'In "Finding Nemo," what kind of fish is Nemo?', + answers: [ + { text: 'Clownfish', correct: true }, + { text: 'Goldfish', correct: false }, + { text: 'Betta fish', correct: false }, + { text: 'Angelfish', correct: false } + ] + }, + { + question: 'In "Frozen," which song does Elsa sing as she builds the castle?', + answers: [ + { text: 'Let It Go', correct: true }, + { text: 'Do You Want to Build a Snowman?', correct: false }, + { text: 'For the First Time in Forever', correct: false }, + { text: 'Love Is an Open Door', correct: false } + ] + }, + { + question: 'In "Mulan," what is the name of Mulan\'s dragon guardian?', + answers: [ + { text: 'Shan Yu', correct: false }, + { text: 'Crikee', correct: false }, + { text: 'Mushu', correct: true }, + { text: 'Li Shang', correct: false } + ] + }, + { + question: 'What does Rapunzel use to hit Flynn Ryder over the head?', + answers: [ + { text: 'A book', correct: false }, + { text: 'A frying pan', correct: true }, + { text: 'A chair', correct: false }, + { text: 'A vase', correct: false } + ] + }, + { + question: 'In "Hercules," what are the names of the two little demons that work for Hades?', + answers: [ + { text: 'Famine and Pestilence', correct: false }, + { text: 'Destruction and Chaos', correct: false }, + { text: 'Pain and Panic', correct: true }, + { text: 'Wrath and Fury', correct: false } + ] + }, + { + question: 'In "Cinderella," what are the names of Cinderella\'s stepsisters?', + answers: [ + { text: 'Beatrice and Eugenie', correct: false }, + { text: 'Hilda and Helga', correct: false }, + { text: 'Flora and Fauna', correct: false }, + { text: 'Anastasia and Drizella', correct: true }, + ] + }, + { + question: 'In "The Little Mermaid," what does Ariel call the fork she collects?', + answers: [ + { text: 'Dinglehopper', correct: true }, + { text: 'Snarfblatt', correct: false }, + { text: 'Thingamabob', correct: false }, + { text: 'Gizmo', correct: false } + ] + } +]; + + +startButton.addEventListener('click', startGame); +nextButton.addEventListener('click', () => { + currentQuestionIndex++; + setNextQuestion(); +}); + +skipButton.addEventListener('click', () => { + currentQuestionIndex++; + setNextQuestion(); +}); + +// function to start the game +function startGame() { + startButton.classList.add('hide'); // hide start button + shuffledQuestions = questions.sort(() => Math.random() - 0.5); + currentQuestionIndex = 0; // reset question + score = 0; // reset score + scoreContainer.classList.add('hide'); //hide score container + questionContainerElement.classList.remove('hide'); //show question container + setNextQuestion(); +} + +// function to set next question +function setNextQuestion() { + resetState(); + showQuestion(shuffledQuestions[currentQuestionIndex]); + startTimer(); +} + +// function to display the question and answers +function showQuestion(question) { + questionElement.innerText = question.question; + question.answers.forEach(answer => { + const button = document.createElement('button'); // create a button for each answer + button.innerText = answer.text; + button.classList.add('btn'); + if (answer.correct) { + button.dataset.correct = answer.correct; + } + button.addEventListener('click', selectAnswer); + answerButtonsElement.appendChild(button); + }); +} + +// function to reset +function resetState() { + clearInterval(timerInterval); + timerElement.innerText = '15'; + nextButton.classList.add('hide'); + while (answerButtonsElement.firstChild) { + answerButtonsElement.removeChild(answerButtonsElement.firstChild); + } +} + +// function to select answer +function selectAnswer(e) { + const selectedButton = e.target; + const correct = selectedButton.dataset.correct; + if (correct) { + score++; // if correct answer then increment score + } + Array.from(answerButtonsElement.children).forEach(button => { + setStatusClass(button, button.dataset.correct); + }); + if (shuffledQuestions.length > currentQuestionIndex + 1) { + nextButton.classList.remove('hide'); + } else { + startButton.innerText = 'Restart'; + startButton.classList.remove('hide'); + scoreContainer.classList.remove('hide'); + scoreElement.innerText = `Your Score: ${score}`; + questionContainerElement.classList.add('hide'); + } +} + +function setStatusClass(element, correct) { + clearStatusClass(element); + if (correct) { + element.classList.add('correct'); + } else { + element.classList.add('wrong'); + } +} + +function clearStatusClass(element) { + element.classList.remove('correct'); + element.classList.remove('wrong'); +} + +// function to start timer +function startTimer() { + timeLeft = 15; + timerInterval = setInterval(() => { + timeLeft--; + timerElement.innerText = timeLeft; + if (timeLeft <= 0) { + clearInterval(timerInterval); + currentQuestionIndex++; + setNextQuestion(); + } + }, 1000); +} + diff --git a/Games/Disney_Trivia/style.css b/Games/Disney_Trivia/style.css new file mode 100644 index 0000000000..a62e8cb430 --- /dev/null +++ b/Games/Disney_Trivia/style.css @@ -0,0 +1,78 @@ +/* style.css */ + +body { + background-image: url("https://github.com/manmita/GameZone/blob/Disney_Trivia/Games/Disney_Trivia/disney_b.jpg"); + background-repeat: no-repeat; + background-size: 1920px 1080px; + display: flex; + font-family: 'Arial', sans-serif; + justify-content: center; + align-items: center; + height: 100vh; + +} + +.container { + text-align: center; + width: 80%; + max-width: 600px; + width: 100%; + background-color: white; + padding: 20px; + border-radius: 10px; + box-shadow: 0 0 10px rgba(25, 89, 172, 0.1); + text-align: center; +} + +h1 { + margin-bottom: 20px; +} + +.btn { + border: none; + outline: none; + padding: 10px 20px; + margin: 10px; + font-size: 16px; + cursor: pointer; + border-radius: 5px; + transition: background-color 0.3s; +} + +.btn:hover { + background-color: #dcdcdc; +} + +.btn-container { + display: flex; + flex-direction: column; +} + +.next-btn { + margin-top: 20px; +} + +.btn.answer { + background-color: #e0e0e0; +} + +.btn.correct { + background-color: #4CAF50; + color: white; +} + +.btn.wrong { + background-color: #f44336; + color: white; +} + +.hide { + display: none; +} + +#timer { + font-size: 18px; + margin-bottom: 20px; +} + + diff --git a/Games/Harmony_Mixer/Assets/Background.svg b/Games/Harmony_Mixer/Assets/Background.svg new file mode 100644 index 0000000000..eebd0f2b90 --- /dev/null +++ b/Games/Harmony_Mixer/Assets/Background.svg @@ -0,0 +1,238 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/Games/Harmony_Mixer/Assets/Pause-button.png b/Games/Harmony_Mixer/Assets/Pause-button.png new file mode 100644 index 0000000000..3c877cc4ee Binary files /dev/null and b/Games/Harmony_Mixer/Assets/Pause-button.png differ diff --git a/Games/Harmony_Mixer/Assets/Play-button.png b/Games/Harmony_Mixer/Assets/Play-button.png new file mode 100644 index 0000000000..8c0c499c38 Binary files /dev/null and b/Games/Harmony_Mixer/Assets/Play-button.png differ diff --git a/Games/Harmony_Mixer/Assets/Reset.png b/Games/Harmony_Mixer/Assets/Reset.png new file mode 100644 index 0000000000..aacd523986 Binary files /dev/null and b/Games/Harmony_Mixer/Assets/Reset.png differ diff --git a/Games/Harmony_Mixer/Assets/Upload-2.png b/Games/Harmony_Mixer/Assets/Upload-2.png new file mode 100644 index 0000000000..6a477e1caf Binary files /dev/null and b/Games/Harmony_Mixer/Assets/Upload-2.png differ diff --git a/Games/Harmony_Mixer/Assets/Upload.png b/Games/Harmony_Mixer/Assets/Upload.png new file mode 100644 index 0000000000..13824e97d2 Binary files /dev/null and b/Games/Harmony_Mixer/Assets/Upload.png differ diff --git a/Games/Harmony_Mixer/Assets/logo.svg b/Games/Harmony_Mixer/Assets/logo.svg new file mode 100644 index 0000000000..6c5394ba76 --- /dev/null +++ b/Games/Harmony_Mixer/Assets/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Games/Harmony_Mixer/README.md b/Games/Harmony_Mixer/README.md new file mode 100644 index 0000000000..3194ae5fc3 --- /dev/null +++ b/Games/Harmony_Mixer/README.md @@ -0,0 +1,51 @@ +# **Game_Name** + +Harmony Mixer + +
+ +## **Description 📃** + + + +- **Harmony Mixer** is an interactive and immersive audio visualizer game that allows you to upload, manipulate, and mix audio tracks. Experience the magic of sound through real-time visualizations and intuitive controls that make mixing both fun and educational. + +## **functionalities 🎮** + + + +- Upload and play audio files. +- Adjust pitch, volume, filter frequency, and balance of the audio. +- Real-time audio visualization on a canvas. +- Interactive seek bar to navigate through the audio track. +- Play, pause, and reset settings for seamless audio control. +- Visual feedback through animated controls and elements. + +
+ +## **How to play? 🕹️** + + + +- Open **Harmony Mixer** in your web browser. +- Click the upload icon to select an audio file from your device. +- Once the audio is uploaded, it will start playing automatically. +- Use the pitch, volume, filter, and balance controls to mix the audio to your preference. +- Watch the audio visualization in real-time on the canvas. +- Use the seek bar to navigate through the track. +- Play and pause the audio using the respective buttons. +- Click the reset button to restore default settings and start mixing afresh. +- Enjoy the dynamic and engaging audio visualizer experience! + +
+ +## **Screenshots 📸** + +
+Screenshot 2024-06-09 at 12 43 43 AM + +
+ +## **Working video 📹** + +[screen-capture.webm](https://github.com/sidharth2829/GameZone/assets/111569459/bd452abf-2952-4553-ae90-4e9db322aebe) diff --git a/Games/Harmony_Mixer/index.html b/Games/Harmony_Mixer/index.html new file mode 100644 index 0000000000..ab52127f16 --- /dev/null +++ b/Games/Harmony_Mixer/index.html @@ -0,0 +1,45 @@ + + + + + + + Harmony Mixer + + + + + + + + + +
+ + + + + + + + + + + + +
+ +
+ + + + +
+ + + diff --git a/Games/Harmony_Mixer/script.js b/Games/Harmony_Mixer/script.js new file mode 100644 index 0000000000..2c4ae8f566 --- /dev/null +++ b/Games/Harmony_Mixer/script.js @@ -0,0 +1,172 @@ +const audioUpload = document.getElementById('audio-upload'); +const canvas = document.getElementById('visualizer'); +const canvasCtx = canvas.getContext('2d'); +const pitchControl = document.getElementById('pitch'); +const volumeControl = document.getElementById('volume'); +const filterControl = document.getElementById('filter'); +const balanceControl = document.getElementById('balance'); +const playButton = document.getElementById('play'); +const pauseButton = document.getElementById('pause'); +const resetSettingsButton = document.getElementById('reset-settings'); +const seekBar = document.getElementById('seek-bar'); +const uploadImage = document.getElementById('upload-image'); +const audioCtx = new (window.AudioContext || window.webkitAudioContext)(); +let analyser, bufferLength, dataArray, source, gainNode, pannerNode, filterNode, buffer, isPlaying = false, startTime = 0, pausedAt = 0; + +audioUpload.addEventListener('change', function() { + const file = this.files[0]; + if (file) { + if (isPlaying) { + pauseAudio(); // Stop the audio when a new file is uploaded + } + const reader = new FileReader(); + reader.onload = function(e) { + audioCtx.decodeAudioData(e.target.result, function(decodedData) { + buffer = decodedData; + initAudio(); + seekBar.max = buffer.duration; + seekBar.value = 0; // Reset seek bar to beginning + pausedAt = 0; // Reset pausedAt to beginning + startAudio(); // Play audio automatically after file is uploaded + }); + }; + reader.readAsArrayBuffer(file); + uploadImage.src = './Assets/Upload-2.png'; + } +}); + +function initAudio() { + gainNode = audioCtx.createGain(); + gainNode.gain.value = volumeControl.value; + + pannerNode = audioCtx.createStereoPanner(); + pannerNode.pan.value = balanceControl.value; + + filterNode = audioCtx.createBiquadFilter(); + filterNode.type = 'lowpass'; + filterNode.frequency.value = filterControl.value; + + analyser = audioCtx.createAnalyser(); + analyser.fftSize = 2048; + bufferLength = analyser.frequencyBinCount; + dataArray = new Uint8Array(bufferLength); + + gainNode.connect(pannerNode); + pannerNode.connect(filterNode); + filterNode.connect(analyser); + analyser.connect(audioCtx.destination); + + pitchControl.addEventListener('input', function() { + if (source) { + source.detune.value = (this.value - 1) * 1000; // detune in cents + } + }); + + volumeControl.addEventListener('input', function() { + if (gainNode) { + gainNode.gain.value = this.value; + } + }); + + filterControl.addEventListener('input', function() { + if (filterNode) { + filterNode.frequency.value = this.value; + } + }); + + balanceControl.addEventListener('input', function() { + if (pannerNode) { + pannerNode.pan.value = this.value; + } + }); + + resetSettingsButton.addEventListener('click', function() { + pitchControl.value = 1; + volumeControl.value = 1; + filterControl.value = 20000; // default value + balanceControl.value = 0; + + if (source) { + source.detune.value = 0; + } + if (gainNode) { + gainNode.gain.value = 1; + } + if (pannerNode) { + pannerNode.pan.value = 0; + } + if (filterNode) { + filterNode.frequency.value = 1000; + } + + }); + + seekBar.addEventListener('input', function() { + if (isPlaying) { + pauseAudio(); + pausedAt = parseFloat(this.value); + startAudio(); + } else { + pausedAt = parseFloat(this.value); + } + }); +} + +function startAudio() { + source = audioCtx.createBufferSource(); + source.buffer = buffer; + source.detune.value = (pitchControl.value - 1) * 1000; + + source.connect(gainNode); + + source.start(0, pausedAt); + startTime = audioCtx.currentTime - pausedAt; + isPlaying = true; + draw(); +} + +function pauseAudio() { + if (source) { + source.stop(); + source.disconnect(); + } + pausedAt = audioCtx.currentTime - startTime; + isPlaying = false; +} + +playButton.addEventListener('click', function() { + if (!isPlaying) { + startAudio(); + } +}); + +pauseButton.addEventListener('click', function() { + if (isPlaying) { + pauseAudio(); + } +}); + +function draw() { + if (!isPlaying) return; + requestAnimationFrame(draw); + analyser.getByteFrequencyData(dataArray); + canvasCtx.clearRect(0, 0, canvas.width, canvas.height); + + const barWidth = (canvas.width / bufferLength) * 2.5; + let barHeight; + let x = 0; + + for (let i = 0; i < bufferLength; i++) { + barHeight = dataArray[i]; + // Calculate color + const shade = 255 - (barHeight * 2); // Reverse the height to get a lighter color + canvasCtx.fillStyle = `rgb(${shade}, ${shade}, 255)`; // Shades of purple + + canvasCtx.fillRect(x, canvas.height - barHeight / 2, barWidth, barHeight / 2); + + x += barWidth + 1; + } + + // Update seek bar + seekBar.value = audioCtx.currentTime - startTime; +} diff --git a/Games/Harmony_Mixer/style.css b/Games/Harmony_Mixer/style.css new file mode 100644 index 0000000000..b6618cfd5d --- /dev/null +++ b/Games/Harmony_Mixer/style.css @@ -0,0 +1,95 @@ +*{ + font-family: "Tenor Sans", cursive; + align-self: center; +} + +body { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + height: 100vh; + margin: 0; + background-image: url("./Assets/Background.svg"); + color: rgb(0, 0, 0); + background-position: center; /* Center the image */ + background-repeat: no-repeat; /* Do not repeat the image */ + background-size: cover; + +} + +h1 { + margin-bottom: 20px; + text-align: center; + width: 75%; +} + +#audio-upload { + display: none; +} + +.upload-label { + cursor: pointer; + width: 7%; + margin-top: 20px; +} + +.controls { + display: flex; + flex-wrap: wrap; + gap: 20px; + margin-bottom: 20px; + justify-content: space-evenly; +} + +canvas { + width: 70%; + display: flex; + margin: auto; + aspect-ratio: 500 / 150; +} + +button { + background-color: transparent; + color: #282c34; + border: none; + width: 7%; + cursor: pointer; +} +img { + transition: transform .7s ease-in-out; +} +img:hover { + transform: rotate(360deg); +}s + +label { + display: block; + margin-top: 10px; + align-self: center; +} + +#seek-bar { + width: 70%; + margin-top: 20px; +} + +#seek-container +{ + width: 100%; + display: flex; + justify-content: space-evenly; + margin: auto; +} + +#navbar +{ + display: flex; + width: 100%; +} + +#logo +{ + width: 10%; + margin: 1rem; +} \ No newline at end of file diff --git a/Games/Kill_The_Bird/index.html b/Games/Kill_The_Bird/index.html new file mode 100644 index 0000000000..1e44a677b5 --- /dev/null +++ b/Games/Kill_The_Bird/index.html @@ -0,0 +1,33 @@ + + + + + + Kill The Birds + + + +
+
+ +
+
GAME OVER
+

KILL THE BIRDS (shoot the birds)

+

CSS GAME - NO JS!

+ + + + + + + + + + + + + +
SCORE:
+
+ + diff --git a/Games/Kill_The_Bird/styles.css b/Games/Kill_The_Bird/styles.css new file mode 100644 index 0000000000..b0e64e93a7 --- /dev/null +++ b/Games/Kill_The_Bird/styles.css @@ -0,0 +1,317 @@ +body { + counter-reset: birds; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + overflow: hidden; +} +/*hide checkbox*/ +input { + position: fixed; + left: -10px; + top: -10px; +} + +h1 { + margin: 0; + text-align: center; +} +h2 { + position: fixed; + right: 20px; + bottom: 0; + font-size: 18px; + color: red; +} + +/*play area*/ +.wrapper { + height: 500px; + background: -webkit-linear-gradient( + top, + hsla(210, 70%, 80%, 1) 0%, + hsla(210, 50%, 100%, 1) 100% + ); + position: relative; + cursor: crosshair; +} +/*count dead birds*/ +.input-circle:checked { + counter-increment: birds; +} + +.sum { + position: fixed; + left: 45%; + top: 60px; + font-size: 24px; + fonot-weight: bold; +} + +/*print to screen dead birds*/ +.sum:after { + content: counter(birds); +} + +.input-circle ~ .pajaro { + opacity: 0; + transition: 0.3s cubic-bezier(0, 0.43, 1, 0); + animation: move 8s infinite alternate; +} +.input-circle1:not(:checked) ~ .pajaro1, +.input-circle2:not(:checked) ~ .pajaro2, +.input-circle3:not(:checked) ~ .pajaro3, +.input-circle4:not(:checked) ~ .pajaro4, +.input-circle5:not(:checked) ~ .pajaro5, +.input-circle6:not(:checked) ~ .pajaro6 { + opacity: 1; +} + +.input-circle1:checked ~ .pajaro1 span, +.input-circle2:checked ~ .pajaro2 span, +.input-circle3:checked ~ .pajaro3 span, +.input-circle4:checked ~ .pajaro4 span, +.input-circle5:checked ~ .pajaro5 span, +.input-circle6:checked ~ .pajaro6 span { + display: block; +} + +.pajaro { + position: absolute; + left: 0; + cursor: crosshair; +} +.pajaro > span { + display: none; + position: absolute; + z-index: 2; + left: -250%; + bottom: -50%; + background-color: white; + border: solid 2px #000; + width: 80px; + height: 30px; + padding: 10px; + border-radius: 50%; +} +.pajaro > span:before { + content: "I'm Dead!"; + color: red; + font-weight: bold; +} + +.pajaro1 { + top: 50px; + animation-delay: -2s !important; + transform: scale(0.9); +} +.pajaro2 { + top: 100px; + animation-delay: -4s !important; + transform: scale(0.5); +} +.pajaro3 { + top: 200px; + animation-delay: -3s !important; + transform: scale(1.4); +} + +.pajaro4 { + top: 50px; + animation-delay: -12s !important; + transform: scale(0.9); +} +.pajaro5 { + top: 100px; + animation-delay: -16s !important; + transform: scale(0.5); +} +.pajaro6 { + top: 200px; + animation-delay: -20s !important; + transform: scale(1.4); +} + +@keyframes move { + 0% { + left: 0%; + } + 20% { + left: 20%; + top: 50%; + } + 40% { + top: 30%; + left: 60%; + } + 60% { + top: 80%; + left: 80%; + } + 80% { + top: 10%; + left: 20%; + } + 100% { + top: 30%; + left: 20%; + } +} + +.timer { + background-color: #333; + width: 300px; + height: 50px; + position: fixed; +} + +.timer span { + display: block; + background: repeating-linear-gradient( + -45deg, + #000, + rgba(0, 0, 0, 0) 25px, + #fff 25px, + #fff 50px + ); + width: 300px; + height: 50px; + animation: timer 20s linear; +} + +.timer span:before { + content: "TIME LEFT"; + display: block; + position: absolute; + z-index: 3; + left: 0; + right: 0; + top: 0; + bottom: 0; + text-align: center; + line-height: 50px; + font-size: 25px; + color: red; +} +@keyframes timer { + 0% { + width: 10px; + } + 100% { + width: 300px; + display: block; + } +} + +.gameover { + position: fixed; + z-index: 100000; + left: 0; + top: 0; + bottom: 0; + right: 0; + background-color: rgba(0, 0, 0, 0.8); + animation: gameover 20s linear forwards; + font-size: 80px; + color: white; + font-weight: bold; + text-align: center; + text-indent: 0; + line-height: 500px; +} + +@keyframes gameover { + 0% { + left: -5000px; + bottom: 100%; + } + 97% { + left: -5000px; + bottom: 100%; + } + 100% { + left: 0px; + } +} + +/*------------------------------------------------------ body of the bird +*/ + +.pajaro { + background: black; + border-radius: 50% 50% 20% 20%; + color: white; + line-height: 20px; + letter-spacing: 2px; + font-size: 0.8em; + text-align: center; + position: absolute; + + margin-top: -20px; + margin-left: -10px; + width: 15px; + height: 15px; + animation: planeo 0.8s linear infinite; + z-index: 999; +} + +.pajaro:after, +.pajaro:before { + content: ""; + position: absolute; + top: 50%; + left: 50%; +} + +/*------------------------------------------------------ bird wings +*/ + +.pajaro:after { + border-radius: 100% 100% 0 0; + box-shadow: inset 0px 5px 0 black; + width: 100px; + height: 100px; + margin-top: -7px; + margin-left: -50px; + transform-origin: 100% 0%; + animation: alas 3s linear infinite; +} + +/*------------------------------------------------------ bird beak +*/ + +.pajaro:before { + background: #ffc37f; + border-radius: 100% 0% 20% 0%; + margin-top: 3px; + margin-left: -4px; + width: 6px; + height: 6px; + transform: rotateZ(45deg); +} + +/*------------------------------------------------------ wings animation +*/ + +@keyframes alas { + 50% { + transform: rotateX(-1440deg); + } +} + +/*------------------------------------------------------ bird animation +*/ + +@keyframes planeo { + 40% { + transform: rotateZ(2deg) translateX(2px) translateY(10px) translateZ(0); + line-height: 16px; + font-size: 0.6em; + } + 80% { + transform: rotateZ(-2deg) translateX(5px) translateY(8px) translateZ(0); + } +} diff --git a/Games/Tic_tac_toe_responsive/README.md b/Games/Tic_tac_toe_responsive/README.md new file mode 100644 index 0000000000..cee5495f23 --- /dev/null +++ b/Games/Tic_tac_toe_responsive/README.md @@ -0,0 +1,28 @@ +# **Game_Name** + +Tic Tac Toe + +
+ +## **Description 📃** +- Tic Tac Toe is a traditional 2 player game. Where players take turn one by one to mark a cell out of 9 + + +## **functionalities 🎮** +- If a player is able to mark 3 consecutive cells (horizontally/vertically/diagonally) then that player wins the game. +- If no player is able to mark 3 consecutive cells, then the game is a draw + +
+ +## **How to play? 🕹️** +- Firstly player X takes turn and clicks on a cell of their choice +- The cell is filled with an X +- Now player O will mark a cell and fills it by a O + +
+ +## **Screenshots 📸** + +
+[image](/Games/Tic_tac_toe_responsive/assets/images/Tic_tac_toe_responsive.png) + diff --git a/Games/Tic_tac_toe_responsive/assets/images/PointerBody.png b/Games/Tic_tac_toe_responsive/assets/images/PointerBody.png new file mode 100644 index 0000000000..f1ae84d5d5 Binary files /dev/null and b/Games/Tic_tac_toe_responsive/assets/images/PointerBody.png differ diff --git a/Games/Tic_tac_toe_responsive/assets/images/PointerHover.png b/Games/Tic_tac_toe_responsive/assets/images/PointerHover.png new file mode 100644 index 0000000000..0f63672839 Binary files /dev/null and b/Games/Tic_tac_toe_responsive/assets/images/PointerHover.png differ diff --git a/Games/Tic_tac_toe_responsive/assets/images/PointerText.png b/Games/Tic_tac_toe_responsive/assets/images/PointerText.png new file mode 100644 index 0000000000..b6545bf4f0 Binary files /dev/null and b/Games/Tic_tac_toe_responsive/assets/images/PointerText.png differ diff --git a/Games/Tic_tac_toe_responsive/assets/images/Tic_tac_toe_responsive.png b/Games/Tic_tac_toe_responsive/assets/images/Tic_tac_toe_responsive.png new file mode 100644 index 0000000000..c002f0e872 Binary files /dev/null and b/Games/Tic_tac_toe_responsive/assets/images/Tic_tac_toe_responsive.png differ diff --git a/Games/Tic_tac_toe_responsive/index.html b/Games/Tic_tac_toe_responsive/index.html new file mode 100644 index 0000000000..a610682d2d --- /dev/null +++ b/Games/Tic_tac_toe_responsive/index.html @@ -0,0 +1,63 @@ + + + + + + + Tic Tac Toe + + + + + + + +
+ +
+

Tic Tac Toe

+

The easiest one

+
+ +
+
+
+ +
+ +
+ + + +
+ +
+ +
+

+ +
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+ +
+ + + + \ No newline at end of file diff --git a/Games/Tic_tac_toe_responsive/script.js b/Games/Tic_tac_toe_responsive/script.js new file mode 100644 index 0000000000..87b81b32c2 --- /dev/null +++ b/Games/Tic_tac_toe_responsive/script.js @@ -0,0 +1,101 @@ +const cells = document.querySelectorAll('.cell'); +const display = document.querySelector('.display'); +let restart = document.querySelector('#restart'); + +display.innerText = "X's turn" +let count = 0; +let xTurn; + +const winCombinations = [ + [0, 1, 2], + [0, 3, 6], + [0, 4, 8], + [1, 4, 7], + [2, 5, 8], + [2, 4, 6], + [3, 4, 5], + [6, 7, 8], +]; + +const handleClick = (cell) => { + let curCell = cell.target; + count++; + + if (xTurn) { + curCell.innerText = 'X'; + display.innerText = "O's turn" + xTurn = false; + } + else { + curCell.innerText = 'O'; + display.innerText = "X's turn" + xTurn = true; + } + + if (count == 9) { + console.log(count); + checkDraw(); + return; + } + getWinner(); +} + +const startGame = () => { + xTurn = true; + + cells.forEach((element) => { + element.removeEventListener('click', handleClick); + element.addEventListener('click', handleClick, { once: true } // so that a cell can be clicked only once + ) + }) +} +startGame(); + + + +const showWinner = (winner) => { + display.innerText = `${winner} won 🍾`; +} + + +const getWinner = () => { + + for (let combinations of winCombinations) { + + const pos1 = cells[combinations[0]].innerText; + const pos2 = cells[combinations[1]].innerText; + const pos3 = cells[combinations[2]].innerText; + + if (pos1 != "", pos2 != "", pos3 != "") { + + if (pos1 === pos2 && pos2 === pos3) { + showWinner(pos1); + return true; + } + } + + } + return false; +} + + +const checkDraw = () => { + cells.forEach(cell => { + if (cell.innerText !== "" && !getWinner()) { + display.innerText = "Draw!🤝"; + } + }) +} + +const restartGame = () => { + cells.forEach(cell => { + cell.innerText = ""; + count = 0; + display.innerText = "X's turn" + startGame(); + + + }) +} + +restart.addEventListener('click', restartGame) \ No newline at end of file diff --git a/Games/Tic_tac_toe_responsive/style.css b/Games/Tic_tac_toe_responsive/style.css new file mode 100644 index 0000000000..ff11ccf393 --- /dev/null +++ b/Games/Tic_tac_toe_responsive/style.css @@ -0,0 +1,241 @@ +*{ + margin: 0; + padding: 0; + box-sizing: border-box; + outline: none; + font-family: 'whyte', Arial, Helvetica, sans-serif; +} + +body{ + background-color: #FFC700; + background-color: #C8B8FF; + display: flex; + flex-wrap: wrap; +} + + + +/* CURSORS */ +html{ + cursor: url('/Games/Tic_tac_toe_responsive/assets/images/PointerBody.png'), auto; +} + + i, .cell, footer a { + cursor: url('/Games/Tic_tac_toe_responsive/assets/images/PointerHover.png'), auto; +} + +.notch p, h3, input { + cursor: url('/Games/Tic_tac_toe_responsive/assets/images/PointerText.png'), auto; + +} + + + +/* PHONE UI */ +.phoneUi{ + border: 4px solid black; + width: 580px; + height: 80%; + border-radius: 30px; + background-color: white; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%,-50%); + text-align: center; +} + +.notch{ + width: 100%; + height: 10%; + color: black; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + font-size: 22px; + gap: 8px; +} + +.notch p { + color: grey; + font-size: 12px; +} + +/* SCREEN */ +.screen{ + width: 90%; + height: 80%; + padding: 0px 35px; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%,-50%); + background-color: #2DD998; + border: 4px solid black; + color: black; + border-radius: 12px; + font-weight: bold; +} + + +.screenHeader { + display: flex; + justify-content: space-between; + align-items: center; + height: 20%; +} + + +.greenBars{ + width: 40%; + display: flex; + justify-content: start; + gap: 10px; +} + +.greenBars span { + border-radius: 12px; + border: 3px solid black; + width: 50%; + height: 22px; + } + +.circleDiv { + display: flex; + justify-content: space-around; + width: 100px; +} + +.circleDiv span { + width: 20px; + height: 20px; + border-radius: 12px; + border: 3px solid black; +} + +/* Display FIELD */ + +.displayDiv{ + height: 14%; + background-color: #699CF8; + border-radius: 15px; + border: 4px solid black; + display: flex; + justify-content: space-around; + align-items: center; + + +} + +.display{ + color: black; + width: 100%; + height: 100%; + padding: 20px; + font-size: 30px; + display: flex; + justify-content: center; + align-items: center; +} + +.displayDiv i { + position: absolute; + right: 100px; +} + + +/* MAIN CONTENT */ +.content{ + width: 100%; + overflow: auto; + height: 66%; + padding: 0px 10px; +} + +.gameBox{ + width: 100%; + height: 100%; + padding: 10px; + display: flex; + justify-content: center; + align-items: center; + flex-wrap: wrap; + gap: 8px; + +} +.cell{ + width: 30%; + height: 30%; + border: 4px solid black; + background-color: white; + border-radius: 10px; + font-size: 90px; + display: flex; + justify-content: center; + align-items: center; + font-family: cursive ,'whyte', Arial, Helvetica, sans-serif; +} + +footer{ + margin-top: 20px; +} + +footer a { + text-decoration: none; + cursor: pointer; +} + + +/* RESPONSIVE */ + + +@media (max-width: 648px) +{ + .phoneUi{ + width: 440px; + } + .cell{ + width: 80px; + height: 80px; + font-size: 70px; + } + + +} + + +@media (max-width: 475px) +{ + .screen{ + padding: 0px 10px; + } + .phoneUi{ + width: 340px; + } + .notch{ + font-size: 18px; + } + .notch p { + color: grey; + font-size: 10px; + } + .cell{ + width: 70px; + height: 70px; + font-size: 50px; + } + .displayDiv i { + right: 40px; + } + + +} + +@media (max-height: 500px) +{ + .notch h3 { + font-size: 14px; + } +} + diff --git a/Games/Virtual_Pet/README.md b/Games/Virtual_Pet/README.md index 39ca46fbc5..e84ae2cb17 100644 --- a/Games/Virtual_Pet/README.md +++ b/Games/Virtual_Pet/README.md @@ -1,4 +1,3 @@ - # Virtual Pet Virtual Pet is a simple and interactive game where players take care of a virtual pet by feeding, playing, and keeping it healthy. It's a fun way to test your virtual pet care skills! diff --git a/README.md b/README.md index 8d9212b21b..a336398077 100644 --- a/README.md +++ b/README.md @@ -108,8 +108,8 @@ This repository also provides one such platforms where contributers come over an | Game | Game | Game | Game | Game | -| ---------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | -| [Master Typing](https://github.com/kunjgit/GameZone/tree/main/Games/Master_Typing) | [Treasure Hunt](https://github.com/Antiquely3059/GameZone/tree/main/Games/Treasure%20Hunt) | [Virtual Pet](https://github.com/Antiquely3059/GameZone/tree/main/Games/Virtual_Pet) | [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | [Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | | +| ---------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------- | --- | +| [Master Typing](https://github.com/kunjgit/GameZone/tree/main/Games/Master_Typing) | [Treasure Hunt](https://github.com/Antiquely3059/GameZone/tree/main/Games/Treasure%20Hunt) | [Virtual Pet](https://github.com/Antiquely3059/GameZone/tree/main/Games/Virtual_Pet) | [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | [Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | | | [Tilting Maze](https://github.com/kunjgit/GameZone/tree/main/Games/Tilting_Maze) | [Simon Game Challenge](https://github.com/kunjgit/GameZone/tree/main/Games/Simon_Game_Challenge) | [Snake Game](https://github.com/kunjgit/GameZone/tree/main/Games/Snake_Game) | [Dino Runner Game](https://github.com/kunjgit/GameZone/tree/main/Games/Dino_Runner_Game) | | [Whack a Mole](https://github.com/kunjgit/GameZone/tree/main/Games/Whack_a_Mole) | [Doraemon Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Doraemon_Jump) | [Black Jack](https://github.com/kunjgit/GameZone/tree/main/Games/Black_Jack) | [Memory Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Game) | [Word Guessing Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Guessing_Game) | | [Ludo Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_Game) | [Piano Game](https://github.com/kunjgit/GameZone/tree/main/Games/Piano) | [Atari Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Atari_Breakout) | [Dinosaur Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dinosaur_Game) | [Guess The Colour by RGB Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Guessing_Game) | @@ -120,7 +120,7 @@ This repository also provides one such platforms where contributers come over an | [Word Scramble Game](https://github.com/kunjgit/GameZone/tree/main/Games/Word_Scramble_Game) | [Tetris](https://github.com/kunjgit/GameZone/tree/main/Games/Tetris) | [Interactive Quizzing Application](https://github.com/kunjgit/GameZone/tree/main/Games/Interactive_Quizzing) | [Planet Defense Game](https://github.com/kunjgit/GameZone/tree/main/Games/Planet_Defense) | [Rabbit Rush Game](https://github.com/kunjgit/GameZone/tree/main/Games/Rabbit_Rush) | | [Wordle](https://github.com/kunjgit/GameZone/tree/main/Games/Wordle) | [Roll Race Game](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_Race) | [Menja Game](https://github.com/kunjgit/GameZone/tree/main/Games/Menja) | [Typing Speed Test Game](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test_Game) | [Tile Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tile_Game) | | [Stick Hero Game](https://github.com/kunjgit/GameZone/tree/main/Games/Stick_Hero_Game) | [Starwars Character Game](https://github.com/kunjgit/GameZone/tree/main/Games/Starwars_Character_Game) | [Traffic Run](https://github.com/kunjgit/GameZone/tree/main/Games/Traffic_Run) | [Love Result Predictor](https://github.com/kunjgit/GameZone/tree/main/Games/Love_Result_Predictor) | [Tower Defense](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Defense) | -[Menja_block_breaker](https://github.com/kunjgit/GameZone/tree/main/Games/Menja_block_breaker) | | [Yahtzee](https://github.com/kunjgit/GameZone/tree/main/Games/Yahtzee) +| [Menja_block_breaker](https://github.com/kunjgit/GameZone/tree/main/Games/Menja_block_breaker) | | [Yahtzee](https://github.com/kunjgit/GameZone/tree/main/Games/Yahtzee) | | [Bird Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bird_game) | [Bubble Blast Game](https://github.com/kunjgit/GameZone/tree/main/Games/Bubble_Blast_Game) | [Emoji Charades](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Charades) | [Drum And Kit](https://github.com/kunjgit/GameZone/tree/main/Games/Drum_Kit_Game) | [Rock Paper Scissors](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_Paper_Scissors) | | [Frogger](https://github.com/kunjgit/GameZone/tree/main/Games/Frogger) | [!morethan5 ](https://github.com/kunjgit/GameZone/tree/main/Games/Not_morethan5) | [Unruly Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Unruly_Tower) | [Maze Game](https://github.com/kunjgit/GameZone/tree/main/Games/MazeGame) | [Connect4](https://github.com/kunjgit/GameZone/tree/main/Games/Connect4) | | [Spelling_Bee](https://github.com/kunjgit/GameZone/tree/main/Games/Spelling_Bee) | [2048](https://github.com/kunjgit/GameZone/tree/main/Games/2048) | [Spin the Wheel](https://github.com/kunjgit/GameZone/tree/main/Games/Spin_the_wheel) | [Breakout](https://github.com/kunjgit/GameZone/tree/main/Games/Breakout) | [Tower Blocks](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Blocks) | @@ -154,6 +154,7 @@ This repository also provides one such platforms where contributers come over an | [Mastermind_Mania](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind_Mania) | [Ludo_4_Player](https://github.com/kunjgit/GameZone/tree/main/Games/Ludo_4_Player) | [AirBalloon](https://github.com/kunjgit/GameZone/tree/main/Games/AirBalloon) | [Space Invaders](https://github.com/kunjgit/GameZone/tree/main/Games/Space_Invaders) | [Cut the Rope](https://github.com/kunjgit/GameZone/tree/main/Games/Cut_the_rope) | | [Caesar&Cipher](https://github.com/kunjgit/GameZone/tree/main/Games/Caesar_Cipher) | [Monster_Maker](https://github.com/kunjgit/GameZone/tree/main/Games/Monster_Maker) | [Stolen Sword](https://github.com/kunjgit/GameZone/tree/main/Games/Stolen_Sword) | [Mastermind](https://github.com/kunjgit/GameZone/tree/main/Games/Mastermind) | [Highway 404](https://github.com/kunjgit/GameZone/tree/main/Games/Highway_404) | | [BullseyeGame](https://github.com/kunjgit/GameZone/tree/main/Games/BullseyeGame) | [Crossword Game](https://github.com/kunjgit/GameZone/tree/main/Games/Crossword_Game) | [Guess the Correct Logo](https://github.com/shruti-2412/GameZone/tree/main/Games/Guess_The_Correct_Logo) | [Painting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Painting_Game) | [Platform_game_engine](https://github.com/kunjgit/GameZone/tree/main/Games/Platform_game_engine) | +| [Kill_The_Bird](https://github.com/kunjgit/GameZone/tree/main/Games/Kill_The_Bird) | | [Doppelkopf](https://github.com/kunjgit/GameZone/tree/main/Games/Doppelkopf) | [quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/quiz_game) | [Island Survival](https://github.com/kunjgit/GameZone/tree/main/Games/Island_Survival) | [Linkup Game](https://github.com/kunjgit/GameZone/tree/main/Games/linkup) | [Trivia_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Trivia_Card) | | [Insect Catch Game](https://github.com/kunjgit/GameZone/tree/main/Games/Insect_Catch_Game) | [Carnival_game](https://github.com/kunjgit/GameZone/tree/main/Games/Carnival_game) | [Make Me Laugh](https://github.com/kunjgit/GameZone/tree/main/Games/Make_Me_Laugh) | [Avoider_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Avoider_Game) | [Dungeon_Crawler](https://github.com/kunjgit/GameZone/tree/main/Games/Dungeon_Crawler) | | [snake_water_gun](https://github.com/kunjgit/GameZone/tree/main/Games/snake_water_gun) | [Run and Jump](https://github.com/kunjgit/GameZone/tree/main/Games/Run_and_Jump) | [AI CHESS Game](https://github.com/kunjgit/GameZone/tree/main/Games/AI_CHESS_Game) | [Fruit_Catching](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching) | [Bulls eye](https://github.com/kunjgit/GameZone/tree/main/Games/Bulls_eye) | @@ -188,8 +189,9 @@ This repository also provides one such platforms where contributers come over an | [CSS Select](https://github.com/kunjgit/GameZone/tree/main/Games/CSS_Select) | [Squid](https://github.com/kunjgit/GameZone/tree/main/Games/Squid_Game) | [Flip Coin](https://github.com/kunjgit/GameZone/tree/main/Games/Flip_Coin) | [Witty Word Quest](https://github.com/kunjgit/GameZone/tree/main/Games/witty_word_quest) | [Typing Game](https://github.com/Ishan-77/GameZone/tree/main/Games/Typing_Game) | | [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | | [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Color_Blast](https://github.com/kunjgit/GameZone/tree/main/Games/Color_Blast) | -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). | -| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Coloron](https://github.com/kunjgit/GameZone/tree/main/Games/Coloron). | + +| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | | | | [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | | | [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) @@ -201,7 +203,7 @@ This repository also provides one such platforms where contributers come over an | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [DoraemonRun ](https://github.com/kunjgit/GameZone/tree/main/Games/DoraemonRun) | | [Memory_Cards_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Memory_Cards_Game) | -| [Typing_Speed_Test2](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test2) | +| [Typing_Speed_Test2](https://github.com/kunjgit/GameZone/tree/main/Games/Typing_Speed_Test2) | [Tic Tac Toe Responsive ](https://github.com/kunjgit/GameZone/tree/main/Games/Tic_tac_toe_responsive) | | [Technical_Mind_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Technical_Mind_Game) | [Slide_Master_Puzzle](https://github.com/kunjgit/GameZone/tree/Main/Games/Slide_Master_Puzz)| | | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [Letter_Sleuth](https://github.com/swetha5157/GameZone/tree/main/Games/Letter_Sleuth) @@ -216,122 +218,122 @@ This repository also provides one such platforms where contributers come over an | [Steampunk_FlappyBird](https://github.com/kunjgit/GameZone/tree/main/Games/Steampunk_FlappyBird) | | [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | | [Automated_rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/automated_rock_paper_scissor) | -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Astronaut_runner](https://github.com/tanishkaa08/GameZone/tree/main/Games/Astronaunt_runner) | -[16_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/16_Puzzle) | -| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | -| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | -| [Dice_Roller](https://github.com/kunjgit/GameZone/tree/main/Games/Dice_Roller) | [Bear Hunter Ninja](https://github.com/Niyatizzz/GameZone/tree/main/Games/Bear_Hunter_Ninja) | -| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | -| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | -| [Pokemon_Stats_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Stats_Card) | +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Astronaut_runner](https://github.com/tanishkaa08/GameZone/tree/main/Games/Astronaunt_runner) | +[16_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/16_Puzzle) | +| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | +| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | +| [Dice_Roller](https://github.com/kunjgit/GameZone/tree/main/Games/Dice_Roller) | [Bear Hunter Ninja](https://github.com/Niyatizzz/GameZone/tree/main/Games/Bear_Hunter_Ninja) | +| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | +| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | +| [Pokemon_Stats_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Stats_Card) | | [Steampunk_FlappyBird](https://github.com/kunjgit/GameZone/tree/main/Games/Steampunk_FlappyBird) | -| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | +| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | | [Automated_rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/automated_rock_paper_scissor) | -| [Grab_The_Carrot](https://github.com/Aksshay88/GameZone/tree/main/Games/Grab_The_Carrot) | -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Astronaut_runner](https://github.com/tanishkaa08/GameZone/tree/main/Games/Astronaunt_runner) | -| [16_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/16_Puzzle) | -| [Musical_Memory](https://github.com/kunjgit/GameZone/tree/main/Games/Musical_Memory) | -|[Quick_Click](https://github.com/kunjgit/GameZone/tree/main/Games/Quick_Click) | -| [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | -| [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | -[Mancala_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Mancala_Game) | -| [Dice_Roller](https://github.com/kunjgit/GameZone/tree/main/Games/Dice_Roller) | [Bear Hunter Ninja](https://github.com/Niyatizzz/GameZone/tree/main/Games/Bear_Hunter_Ninja) | -| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | -| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | -| [Chrome_Dino_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dino_Game) | -| [Pokemon_Stats_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Stats_Card) | +| [Grab_The_Carrot](https://github.com/Aksshay88/GameZone/tree/main/Games/Grab_The_Carrot) | +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Astronaut_runner](https://github.com/tanishkaa08/GameZone/tree/main/Games/Astronaunt_runner) | +| [16_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/16_Puzzle) | +| [Musical_Memory](https://github.com/kunjgit/GameZone/tree/main/Games/Musical_Memory) | +|[Quick_Click](https://github.com/kunjgit/GameZone/tree/main/Games/Quick_Click) | +| [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | +| [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | +[Mancala_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Mancala_Game) | +| [Dice_Roller](https://github.com/kunjgit/GameZone/tree/main/Games/Dice_Roller) | [Bear Hunter Ninja](https://github.com/Niyatizzz/GameZone/tree/main/Games/Bear_Hunter_Ninja) | +| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | +| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | +| [Chrome_Dino_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dino_Game) | +| [Pokemon_Stats_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Stats_Card) | | [Steampunk_FlappyBird](https://github.com/kunjgit/GameZone/tree/main/Games/Steampunk_FlappyBird) | -| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | +| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | | [Automated_rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/automated_rock_paper_scissor) | -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Astronaut_runner](https://github.com/tanishkaa08/GameZone/tree/main/Games/Astronaunt_runner) | -| [16_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/16_Puzzle) | -| [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | -| [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | -| [escaperoom](https://github.com/kunjgit/GameZone/tree/main/Games/escaperoom) | -| [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) | -| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | -| [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | -| [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | -| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | -| [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | -| [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | [Soccer](https://github.com/kunjgit/GameZone/tree/main/Games/Soccer) | -| [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics) | -| [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | -| [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | -| [Candy_Crush_Saga](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush_Saga) | -| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | -| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | -| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | -| [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | - [Candy_Crush_Saga](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush_Saga) | - [Colour_Generator_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Generator_Game) | -| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | -| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | -[Mancala_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Mancala_Game) | -|[2048_win](https://github.com/kunjgit/GameZone/tree/main/Games/2048_win) | -| [Dice_Roller](https://github.com/kunjgit/GameZone/tree/main/Games/Dice_Roller) | [Chrome_Dino_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dino_Game) | -| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | -| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | -| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | -| [Shrek_Vs_Wild](https://github.com/kunjgit/GameZone/tree/main/Games/Shrek_Vs_Wild) | -| [Balloon_Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Balloon_Buster) | -| [Pokemon_Stats_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Stats_Card) | -| [Steampunk_FlappyBird](https://github.com/kunjgit/GameZone/tree/main/Games/Steampunk_FlappyBird) | -| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | | -| [path_finder](https://github.com/kunjgit/GameZone/tree/main/Games/path_finder) | -| [Shrek_Vs_Wild](https://github.com/kunjgit/GameZone/tree/main/Games/Shrek_Vs_Wild) | -| [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | -| [Guess_num](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_num) | -| [QuickFingers](https://github.com/kunjgit/GameZone/tree/main/Games/QuickFingers) | -| [Physics_Quizz](https://github.com/kunjgit/GameZone/tree/main/Games/Physics_Quizz) | -| [Tiny_Fishing](https://github.com/kunjgit/GameZone/tree/main/Games/Tiny_Fishing) | - -| [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | - -| [namefate](https://github.com/kunjgit/GameZone/tree/main/Games/namefate) | -| [Fruit_Catching_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching_Game) | -| [color_matching_application](https://github.com/kunjgit/GameZone/tree/main/Games/color_matching_application) | -| [Pictionary_Game](https://github.com/Jagpreet153/GameZone/tree/main/Games/Pictionary_Game) | -| [Anagram_Checker_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Anagram_Checker_Game) | -| [HitYourFriend](https://github.com/kunjgit/GameZone/tree/main/Games/HitYourFriend) | -| [Random_joke_Generator](https://github.com/Jagpreet153/GameZone/tree/main/Games/Random_joke_Generator) | -| [Arkanoid_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arkanoid_Game) | -| [Catch_Stars](https://github.com/Kunjgit/GameZone/tree/main/Games/Catch_Stars) | -| [Color Matcher](https://github.com/1911aditi/GameZone/tree/1a4f3847e11bb13b1aca4652a87868c9bc467a93/Games/color%20matcher)                | +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [Astronaut_runner](https://github.com/tanishkaa08/GameZone/tree/main/Games/Astronaunt_runner) | +| [16_Puzzle](https://github.com/kunjgit/GameZone/tree/main/Games/16_Puzzle) | +| [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | +| [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | +| [escaperoom](https://github.com/kunjgit/GameZone/tree/main/Games/escaperoom) | +| [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [HTML5_Controller_Tester](https://github.com/kunjgit/GameZone/tree/main/Games/HTML5_Controller_Tester) | +| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | +| [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | +| [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | +| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | +| [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | +| [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | [Soccer](https://github.com/kunjgit/GameZone/tree/main/Games/Soccer) | +| [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics) | +| [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | +| [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | +| [Candy_Crush_Saga](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush_Saga) | +| [numeral-whiz](https://github.com/Ishan-77/GameZone/tree/main/Games/numeral-whiz) | [candy_match](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Match_Saga) | [Crossy_Road](https://github.com/tanujbordikar/GameZone/tree/Crossy_Road) | [HueHero](https://github.com/kunjgit/GameZone/tree/main/Games/HueHero) | [Puzzel_Winner](https://github.com/kunjgit/GameZone/tree/main/Games/Puzzel_Winner) | +| [Emoji_Intruder](https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_Intruder) | [Guess The Weapon](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Weapon) | [Guess Who](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_Who) | [Pop My Balloon](https://github.com/kunjgit/GameZone/tree/main/Games/Pop_My_Balloon) | [Tower Stack](https://github.com/kunjgit/GameZone/tree/main/Games/Tower_Stack) | +| [Maze_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Maze_Game) | [TriHand_Tactics](https://github.com/kunjgit/GameZone/tree/main/Games/TriHand_Tactics) | [Earth_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Earth_Guardian) | [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | +| [Ball_Shooting_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Ball_Shooting_Game) | [CatchTheBall](https://github.com/kunjgit/GameZone/tree/main/Games/CatchTheBall) | +[Candy_Crush_Saga](https://github.com/kunjgit/GameZone/tree/main/Games/Candy_Crush_Saga) | +[Colour_Generator_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Colour_Generator_Game) | +| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | +| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | +[Mancala_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Mancala_Game) | +|[2048_win](https://github.com/kunjgit/GameZone/tree/main/Games/2048_win) | +| [Dice_Roller](https://github.com/kunjgit/GameZone/tree/main/Games/Dice_Roller) | [Chrome_Dino_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Chrome_Dino_Game) | +| [Rock_paper_scissor](https://github.com/kunjgit/GameZone/tree/main/Games/Rock_paper_scissor) | +| [City_Builder_Game](https://github.com/kunjgit/GameZone/tree/main/Games/City_Builder_Game) | +| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | +| [Shrek_Vs_Wild](https://github.com/kunjgit/GameZone/tree/main/Games/Shrek_Vs_Wild) | +| [Balloon_Buster](https://github.com/kunjgit/GameZone/tree/main/Games/Balloon_Buster) | +| [Pokemon_Stats_Card](https://github.com/kunjgit/GameZone/tree/main/Games/Pokemon_Stats_Card) | +| [Steampunk_FlappyBird](https://github.com/kunjgit/GameZone/tree/main/Games/Steampunk_FlappyBird) | +| [Catch_The_Circle](https://github.com/kunjgit/GameZone/tree/main/Games/Catch_The_Circle) | | +| [path_finder](https://github.com/kunjgit/GameZone/tree/main/Games/path_finder) | +| [Shrek_Vs_Wild](https://github.com/kunjgit/GameZone/tree/main/Games/Shrek_Vs_Wild) | +| [Dragon_Tower](https://github.com/kunjgit/GameZone/tree/main/Games/Dragon_Tower) | +| [Guess_num](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_num) | +| [QuickFingers](https://github.com/kunjgit/GameZone/tree/main/Games/QuickFingers) | +| [Physics_Quizz](https://github.com/kunjgit/GameZone/tree/main/Games/Physics_Quizz) | +| [Tiny_Fishing](https://github.com/kunjgit/GameZone/tree/main/Games/Tiny_Fishing) | + +| [Hover_Board_Effect](https://github.com/kunjgit/GameZone/tree/main/Games/Hover_Board_Effect) | + +| [namefate](https://github.com/kunjgit/GameZone/tree/main/Games/namefate) | +| [Fruit_Catching_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Fruit_Catching_Game) | +| [color_matching_application](https://github.com/kunjgit/GameZone/tree/main/Games/color_matching_application) | +| [Pictionary_Game](https://github.com/Jagpreet153/GameZone/tree/main/Games/Pictionary_Game) | +| [Anagram_Checker_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Anagram_Checker_Game) | +| [HitYourFriend](https://github.com/kunjgit/GameZone/tree/main/Games/HitYourFriend) | +| [Random_joke_Generator](https://github.com/Jagpreet153/GameZone/tree/main/Games/Random_joke_Generator) | +| [Arkanoid_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Arkanoid_Game) | +| [Catch_Stars](https://github.com/Kunjgit/GameZone/tree/main/Games/Catch_Stars) | +| [Color Matcher](https://github.com/1911aditi/GameZone/tree/1a4f3847e11bb13b1aca4652a87868c9bc467a93/Games/color%20matcher)                | | [LaserDarts] (https://github.com/Jagpreet153/GameZone/tree/main/Games/LaserDarts) -| [Block Building](https://github.com/kunjgit/GameZone/tree/main/Games/Block_Building) | +| [Block Building](https://github.com/kunjgit/GameZone/tree/main/Games/Block_Building) | | [Flames Game](https://github.com/kunjgit/GameZone/tree/main/Games/Flames_Game)| -| [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) | -|[Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | -| [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | +| [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) | +|[Ping_Pong_Singleplayer](https://github.com/kunjgit/GameZone/tree/main/Games/Ping_Pong_Singleplayer) | +| [MazeRunner](https://github.com/kunjgit/GameZone/tree/main/Games/MazeRunner) | | [Emoji_slot_machine] (https://github.com/kunjgit/GameZone/tree/main/Games/Emoji_slot_machine) -| [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) -| [Pixel Painter](https://github.com/kunjgit/GameZone/tree/main/Games/pixel_painter) | -| [Guess_The_Song](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Song) | [Reverse Memory](https://github.com/MuraliDharan7/GameZone/tree/reverse-memory-game/Games/Reverse%20Memory) -| [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) | -| [Recognizing_Figures](https://github.com/kunjgit/GameZone/tree/main/Games/Recognizing_Figures) | -| [WordScramble](https://github.com/kunjgit/GameZone/tree/main/Games/wordScramble) -[Roll_The_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_The_Dice) | -| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | -| [Recognizing_Figures](https://github.com/kunjgit/GameZone/tree/main/Games/Recognizing_Figures) | [Screen Pet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Screen-Pet-Game) | -| [Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | -| [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) | +| [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) +| [Pixel Painter](https://github.com/kunjgit/GameZone/tree/main/Games/pixel_painter) | +| [Guess_The_Song](https://github.com/kunjgit/GameZone/tree/main/Games/Guess_The_Song) | [Reverse Memory](https://github.com/MuraliDharan7/GameZone/tree/reverse-memory-game/Games/Reverse%20Memory) +| [NewsJunction](https://github.com/kunjgit/GameZone/tree/main/Games/NewsJunction) | +| [Recognizing_Figures](https://github.com/kunjgit/GameZone/tree/main/Games/Recognizing_Figures) | +| [WordScramble](https://github.com/kunjgit/GameZone/tree/main/Games/wordScramble) +[Roll_The_Dice](https://github.com/kunjgit/GameZone/tree/main/Games/Roll_The_Dice) | +| [Black_jackk](https://github.com/kunjgit/GameZone/tree/main/Games/Black_jackk) | +| [Recognizing_Figures](https://github.com/kunjgit/GameZone/tree/main/Games/Recognizing_Figures) | [Screen Pet Game](https://github.com/kunjgit/GameZone/tree/main/Games/Screen-Pet-Game) | +| [Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | +| [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) | | [Color The Page](https://github.com/kunjgit/GameZone/tree/main/Games/Color_The_Page)| |[Building Blocks Game](https://github.com/kunjgit/GameZone/tree/main/Games/Building_Block_Game)| |[Cartoon character guessing game](https://github.com/kunjgit/GameZone/tree/main/Games/Cartoon_Character_Guessing_Game)| |[Carrom Board Game](https://github.com/kunjgit/GameZone/tree/main/Games/carrom)| -| [Number_Recall_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Recall_Game) | -| [Hit_the_hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_the_hamster) | -| [Forest_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Forst_Guardian) | -| [Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | -| [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) | +| [Number_Recall_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Recall_Game) | +| [Hit_the_hamster](https://github.com/kunjgit/GameZone/tree/main/Games/Hit_the_hamster) | +| [Forest_Guardian](https://github.com/kunjgit/GameZone/tree/main/Games/Forst_Guardian) | +| [Sudoku_light_theme](https://github.com/kunjgit/GameZone/tree/main/Games/Sudoku_light_theme) | +| [Find_the_ball](https://github.com/kunjgit/GameZone/tree/main/Games/Find_the_ball) | |[Color The Page](https://github.com/kunjgit/GameZone/tree/main/Games/Color_The_Page)| -|[AquaSort_Game](https://github.com/kunjgit/GameZone/tree/main/Games/AquaSort_Game) | -| [Snake](https://github.com/kunjgit/GameZone/tree/main/Games/snake)                | +|[AquaSort_Game](https://github.com/kunjgit/GameZone/tree/main/Games/AquaSort_Game) | +| [Snake](https://github.com/kunjgit/GameZone/tree/main/Games/snake)                | -|[Chess_Game_computer](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game_computer) | +|[Chess_Game_computer](https://github.com/kunjgit/GameZone/tree/main/Games/Chess_Game_computer) | -|[Turn_on_the_light](https://github.com/kunjgit/GameZone/tree/main/Games/Turn_on_the_light) | +|[Turn_on_the_light](https://github.com/kunjgit/GameZone/tree/main/Games/Turn_on_the_light) | | [Tic-Tac-Toe Game](https://github.com/kunjgit/GameZone/tree/main/Games/Tic-Tac-Toe) | | [Rapid_click_frenzy](https://github.com/kunjgit/GameZone/tree/main/Games/Rapid_click_frenzy) | | [Dsa_quiz_game](https://github.com/kunjgit/GameZone/tree/main/Games/Dsa_quiz_game) | @@ -347,10 +349,15 @@ This repository also provides one such platforms where contributers come over an | [Intellect Quest](https://github.com/Will2Jacks/GameZoneForked/tree/Task/Games/Intellect_Quest) | | [Taash_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Taash_Game) | | [Number_Guessing_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Number_Guessing_Game) | -| [Tower_Block_Game](https://github.com/Saipradyumnagoud/GameZone/tree/main/Games/Tower_Block_Game) | +| [Tower_Block_Game](https://github.com/Saipradyumnagoud/GameZone/tree/main/Games/Tower_Block_Game) | | [Modulo_Game](https://github.com/kunjgit/GameZone/tree/main/Games/Modulo_Game) | | [Memory_Matching_Game](https://github.com/Saipradyumnagoud/GameZone/tree/main/Games/Memory_Matching_Game) | -| [Block_Ninja](https://github.com/kunjgit/GameZone/tree/main/Games/Block_Ninja) | +| [Block_Ninja] (https://github.com/kunjgit/GameZone/tree/main/Games/Block_Ninja) | +| [Disney_Trivia](https://github.com/manmita/GameZone/tree/Disney_Trivia/Games/Disney_Trivia)| +|[Harmony_Mixer](https://github.com/kunjgit/GameZone/tree/main/Games/Harmony_Mixer)| + + +
@@ -402,7 +409,7 @@ Terms and conditions for use, reproduction and distribution are under the [Apach
- This project thanking all the contributors for having your valuable contribution to our project -- Make sure you show some love by giving ⭐ to our repository +- Make sure you show some love by giving ⭐ to our repository
@@ -413,4 +420,3 @@ Terms and conditions for use, reproduction and distribution are under the [Apach

Back to top

- diff --git a/assets/images/Disney_Trivia.png b/assets/images/Disney_Trivia.png new file mode 100644 index 0000000000..fbb708cc1a Binary files /dev/null and b/assets/images/Disney_Trivia.png differ diff --git a/assets/images/Harmony_Mixer.png b/assets/images/Harmony_Mixer.png new file mode 100644 index 0000000000..59a6089412 Binary files /dev/null and b/assets/images/Harmony_Mixer.png differ diff --git a/assets/images/Tic_tac_toe_responsive.png b/assets/images/Tic_tac_toe_responsive.png new file mode 100644 index 0000000000..c002f0e872 Binary files /dev/null and b/assets/images/Tic_tac_toe_responsive.png differ diff --git a/assets/images/grabthecarrot.png b/assets/images/grabthecarrot.png deleted file mode 100644 index 69a5874ced..0000000000 Binary files a/assets/images/grabthecarrot.png and /dev/null differ diff --git a/assets/images/killthebird.jpeg b/assets/images/killthebird.jpeg new file mode 100644 index 0000000000..9995c9c29e Binary files /dev/null and b/assets/images/killthebird.jpeg differ diff --git a/index.html b/index.html index 284d1e5869..2fa8006e92 100644 --- a/index.html +++ b/index.html @@ -408,7 +408,18 @@

🠕 - + +