├── .gitignore ├── CssTime ├── README.md ├── Vampire.html ├── skull.css ├── skull.html └── vampire.css ├── JavaScriptLogicGames ├── 8 Puzzle │ ├── index.html │ ├── script.js │ └── styles.css ├── BlackJack Game │ ├── images │ │ └── table.png │ ├── index.css │ ├── index.html │ ├── index.js │ ├── package.json │ └── vite.config.js ├── Dice game │ ├── imagepack │ │ ├── dice1.png │ │ ├── dice2.png │ │ ├── dice3.png │ │ ├── dice4.png │ │ ├── dice5.png │ │ └── dice6.png │ ├── index.css │ ├── index.html │ └── index.js ├── MineSweeper_puzzle │ ├── Readme.md │ ├── index.html │ ├── scripts.js │ └── styles.css ├── NumberGuessingGame │ ├── favicon │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest │ └── index.html ├── README.md ├── RabbitGame2 │ ├── index.html │ ├── script.js │ └── style.css ├── Rabbit_Rush │ ├── index.html │ ├── script.js │ └── style.css ├── Randomy Card Game │ ├── 1player.html │ ├── 2player.html │ ├── cards │ │ ├── .DS_Store │ │ ├── 1-C.png │ │ ├── 1-D.png │ │ ├── 1-H.png │ │ ├── 1-S.png │ │ ├── 2-C.png │ │ ├── 2-D.png │ │ ├── 2-H.png │ │ ├── 2-S.png │ │ ├── 3-C.png │ │ ├── 3-D.png │ │ ├── 3-H.png │ │ ├── 3-S.png │ │ ├── 4-C.png │ │ ├── 4-D.png │ │ ├── 4-H.png │ │ ├── 4-S.png │ │ ├── 5-C.png │ │ ├── 5-D.png │ │ ├── 5-H.png │ │ ├── 5-S.png │ │ ├── 6-C.png │ │ ├── 6-D.png │ │ ├── 6-H.png │ │ ├── 6-S.png │ │ ├── 7-C.png │ │ ├── 7-D.png │ │ ├── 7-H.png │ │ ├── 7-S.png │ │ ├── 8-C.png │ │ ├── 8-D.png │ │ ├── 8-H.png │ │ ├── 8-S.png │ │ ├── 9-C.png │ │ ├── 9-D.png │ │ ├── 9-H.png │ │ ├── 9-S.png │ │ ├── BACK.png │ │ ├── J-B.png │ │ ├── J-C.png │ │ ├── J-D.png │ │ ├── J-H.png │ │ ├── J-R.png │ │ ├── J-S.png │ │ ├── K-C.png │ │ ├── K-D.png │ │ ├── K-H.png │ │ ├── K-S.png │ │ ├── Q-C.png │ │ ├── Q-D.png │ │ ├── Q-H.png │ │ ├── Q-S.png │ │ ├── T-C.png │ │ ├── T-D.png │ │ ├── T-H.png │ │ └── T-S.png │ ├── css │ │ └── styles.css │ ├── images │ │ ├── bg.jpg │ │ └── deck.png │ ├── index.html │ └── js │ │ ├── p1script.js │ │ └── p2script.js ├── Rock Paper Scissors │ ├── images │ │ ├── paper.png │ │ ├── rock.png │ │ └── scissors.png │ ├── index.html │ ├── script.js │ └── style.css ├── ShootDuckGame │ ├── main.html │ ├── script.js │ └── styles.css ├── Simon-Game │ ├── README.md │ ├── game.js │ ├── index.html │ ├── sounds │ │ ├── blue.mp3 │ │ ├── green.mp3 │ │ ├── red.mp3 │ │ ├── wrong.mp3 │ │ └── yellow.mp3 │ └── styles.css ├── SnakeGame │ ├── css │ │ └── style.css │ ├── img │ │ └── bg.jpg │ ├── index.html │ ├── js │ │ └── index.js │ └── music │ │ ├── food.mp3 │ │ ├── gameover.mp3 │ │ ├── move.mp3 │ │ └── music.mp3 ├── Snake_game2 │ ├── Screenshot 2023-05-29 170336.png │ ├── Screenshot 2023-05-30 122122.png │ ├── SnakeItUpLogoTiles-Background.png │ ├── download (2).jpg │ ├── download.jpg │ ├── index.html │ ├── snake_game.css │ ├── snake_game.html │ └── snake_game.js ├── Spinner-Game │ ├── index.html │ ├── script.js │ ├── spinner-arrow.svg │ ├── spinner.mp3 │ └── style.css ├── Tic-Tac-Toe │ ├── README.md │ ├── demo.png │ ├── excited.gif │ ├── gameover.mp3 │ ├── index.html │ ├── script.js │ ├── style.css │ └── ting.mp3 ├── Wheel_of_fortune │ ├── design.css │ ├── index.html │ └── script.js ├── Wordle │ ├── index.html │ ├── script.js │ └── style.css ├── timerQuiz │ ├── index.html │ ├── js │ │ ├── questions.js │ │ └── script.js │ └── style.css └── typing_speed_test_game │ ├── design.css │ ├── index.html │ └── script.js ├── README.md └── Sample ├── CssTime ├── README.md ├── index.html └── styles.css └── JavaScriptGameName ├── README.md ├── index.html ├── scripts.js └── styles.css /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CssTime/README.md: -------------------------------------------------------------------------------- 1 | Keep Css Design Folders here. -------------------------------------------------------------------------------- /CssTime/Vampire.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/CssTime/Vampire.html -------------------------------------------------------------------------------- /CssTime/skull.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/CssTime/skull.css -------------------------------------------------------------------------------- /CssTime/skull.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/CssTime/skull.html -------------------------------------------------------------------------------- /CssTime/vampire.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/CssTime/vampire.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/8 Puzzle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/8 Puzzle/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/8 Puzzle/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/8 Puzzle/script.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/8 Puzzle/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/8 Puzzle/styles.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/BlackJack Game/images/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/BlackJack Game/images/table.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/BlackJack Game/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/BlackJack Game/index.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/BlackJack Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/BlackJack Game/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/BlackJack Game/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/BlackJack Game/index.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/BlackJack Game/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/BlackJack Game/package.json -------------------------------------------------------------------------------- /JavaScriptLogicGames/BlackJack Game/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/BlackJack Game/vite.config.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/Dice game/imagepack/dice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Dice game/imagepack/dice1.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Dice game/imagepack/dice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Dice game/imagepack/dice2.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Dice game/imagepack/dice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Dice game/imagepack/dice3.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Dice game/imagepack/dice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Dice game/imagepack/dice4.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Dice game/imagepack/dice5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Dice game/imagepack/dice5.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Dice game/imagepack/dice6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Dice game/imagepack/dice6.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Dice game/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Dice game/index.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/Dice game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Dice game/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/Dice game/index.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /JavaScriptLogicGames/MineSweeper_puzzle/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/MineSweeper_puzzle/Readme.md -------------------------------------------------------------------------------- /JavaScriptLogicGames/MineSweeper_puzzle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/MineSweeper_puzzle/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/MineSweeper_puzzle/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/MineSweeper_puzzle/scripts.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/MineSweeper_puzzle/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/MineSweeper_puzzle/styles.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/NumberGuessingGame/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/NumberGuessingGame/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/NumberGuessingGame/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/NumberGuessingGame/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/NumberGuessingGame/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/NumberGuessingGame/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/NumberGuessingGame/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/NumberGuessingGame/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/NumberGuessingGame/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/NumberGuessingGame/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/NumberGuessingGame/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/NumberGuessingGame/favicon/favicon.ico -------------------------------------------------------------------------------- /JavaScriptLogicGames/NumberGuessingGame/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/NumberGuessingGame/favicon/site.webmanifest -------------------------------------------------------------------------------- /JavaScriptLogicGames/NumberGuessingGame/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/NumberGuessingGame/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/README.md: -------------------------------------------------------------------------------- 1 | Keep JS Games Here. -------------------------------------------------------------------------------- /JavaScriptLogicGames/RabbitGame2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/RabbitGame2/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/RabbitGame2/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/RabbitGame2/script.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/RabbitGame2/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/RabbitGame2/style.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/Rabbit_Rush/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Rabbit_Rush/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/Rabbit_Rush/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Rabbit_Rush/script.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/Rabbit_Rush/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Rabbit_Rush/style.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/1player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/1player.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/2player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/2player.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/.DS_Store -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/1-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/1-C.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/1-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/1-D.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/1-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/1-H.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/1-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/1-S.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/2-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/2-C.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/2-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/2-D.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/2-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/2-H.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/2-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/2-S.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/3-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/3-C.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/3-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/3-D.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/3-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/3-H.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/3-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/3-S.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/4-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/4-C.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/4-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/4-D.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/4-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/4-H.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/4-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/4-S.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/5-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/5-C.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/5-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/5-D.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/5-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/5-H.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/5-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/5-S.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/6-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/6-C.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/6-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/6-D.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/6-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/6-H.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/6-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/6-S.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/7-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/7-C.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/7-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/7-D.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/7-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/7-H.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/7-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/7-S.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/8-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/8-C.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/8-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/8-D.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/8-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/8-H.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/8-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/8-S.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/9-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/9-C.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/9-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/9-D.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/9-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/9-H.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/9-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/9-S.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/BACK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/BACK.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/J-B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/J-B.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/J-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/J-C.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/J-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/J-D.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/J-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/J-H.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/J-R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/J-R.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/J-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/J-S.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/K-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/K-C.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/K-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/K-D.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/K-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/K-H.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/K-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/K-S.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/Q-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/Q-C.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/Q-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/Q-D.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/Q-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/Q-H.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/Q-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/Q-S.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/T-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/T-C.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/T-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/T-D.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/T-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/T-H.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/cards/T-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/cards/T-S.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/css/styles.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/images/bg.jpg -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/images/deck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/images/deck.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/js/p1script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/js/p1script.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/Randomy Card Game/js/p2script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Randomy Card Game/js/p2script.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/Rock Paper Scissors/images/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Rock Paper Scissors/images/paper.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Rock Paper Scissors/images/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Rock Paper Scissors/images/rock.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Rock Paper Scissors/images/scissors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Rock Paper Scissors/images/scissors.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Rock Paper Scissors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Rock Paper Scissors/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/Rock Paper Scissors/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Rock Paper Scissors/script.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/Rock Paper Scissors/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Rock Paper Scissors/style.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/ShootDuckGame/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/ShootDuckGame/main.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/ShootDuckGame/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/ShootDuckGame/script.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/ShootDuckGame/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/ShootDuckGame/styles.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/Simon-Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Simon-Game/README.md -------------------------------------------------------------------------------- /JavaScriptLogicGames/Simon-Game/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Simon-Game/game.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/Simon-Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Simon-Game/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/Simon-Game/sounds/blue.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Simon-Game/sounds/blue.mp3 -------------------------------------------------------------------------------- /JavaScriptLogicGames/Simon-Game/sounds/green.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Simon-Game/sounds/green.mp3 -------------------------------------------------------------------------------- /JavaScriptLogicGames/Simon-Game/sounds/red.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Simon-Game/sounds/red.mp3 -------------------------------------------------------------------------------- /JavaScriptLogicGames/Simon-Game/sounds/wrong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Simon-Game/sounds/wrong.mp3 -------------------------------------------------------------------------------- /JavaScriptLogicGames/Simon-Game/sounds/yellow.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Simon-Game/sounds/yellow.mp3 -------------------------------------------------------------------------------- /JavaScriptLogicGames/Simon-Game/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Simon-Game/styles.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/SnakeGame/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/SnakeGame/css/style.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/SnakeGame/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/SnakeGame/img/bg.jpg -------------------------------------------------------------------------------- /JavaScriptLogicGames/SnakeGame/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/SnakeGame/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/SnakeGame/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/SnakeGame/js/index.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/SnakeGame/music/food.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/SnakeGame/music/food.mp3 -------------------------------------------------------------------------------- /JavaScriptLogicGames/SnakeGame/music/gameover.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/SnakeGame/music/gameover.mp3 -------------------------------------------------------------------------------- /JavaScriptLogicGames/SnakeGame/music/move.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/SnakeGame/music/move.mp3 -------------------------------------------------------------------------------- /JavaScriptLogicGames/SnakeGame/music/music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/SnakeGame/music/music.mp3 -------------------------------------------------------------------------------- /JavaScriptLogicGames/Snake_game2/Screenshot 2023-05-29 170336.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Snake_game2/Screenshot 2023-05-29 170336.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Snake_game2/Screenshot 2023-05-30 122122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Snake_game2/Screenshot 2023-05-30 122122.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Snake_game2/SnakeItUpLogoTiles-Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Snake_game2/SnakeItUpLogoTiles-Background.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Snake_game2/download (2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Snake_game2/download (2).jpg -------------------------------------------------------------------------------- /JavaScriptLogicGames/Snake_game2/download.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Snake_game2/download.jpg -------------------------------------------------------------------------------- /JavaScriptLogicGames/Snake_game2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Snake_game2/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/Snake_game2/snake_game.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Snake_game2/snake_game.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/Snake_game2/snake_game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Snake_game2/snake_game.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/Snake_game2/snake_game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Snake_game2/snake_game.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/Spinner-Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Spinner-Game/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/Spinner-Game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Spinner-Game/script.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/Spinner-Game/spinner-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Spinner-Game/spinner-arrow.svg -------------------------------------------------------------------------------- /JavaScriptLogicGames/Spinner-Game/spinner.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Spinner-Game/spinner.mp3 -------------------------------------------------------------------------------- /JavaScriptLogicGames/Spinner-Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Spinner-Game/style.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/Tic-Tac-Toe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Tic-Tac-Toe/README.md -------------------------------------------------------------------------------- /JavaScriptLogicGames/Tic-Tac-Toe/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Tic-Tac-Toe/demo.png -------------------------------------------------------------------------------- /JavaScriptLogicGames/Tic-Tac-Toe/excited.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Tic-Tac-Toe/excited.gif -------------------------------------------------------------------------------- /JavaScriptLogicGames/Tic-Tac-Toe/gameover.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Tic-Tac-Toe/gameover.mp3 -------------------------------------------------------------------------------- /JavaScriptLogicGames/Tic-Tac-Toe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Tic-Tac-Toe/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/Tic-Tac-Toe/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Tic-Tac-Toe/script.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/Tic-Tac-Toe/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Tic-Tac-Toe/style.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/Tic-Tac-Toe/ting.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Tic-Tac-Toe/ting.mp3 -------------------------------------------------------------------------------- /JavaScriptLogicGames/Wheel_of_fortune/design.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Wheel_of_fortune/design.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/Wheel_of_fortune/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Wheel_of_fortune/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/Wheel_of_fortune/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Wheel_of_fortune/script.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/Wordle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Wordle/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/Wordle/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Wordle/script.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/Wordle/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/Wordle/style.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/timerQuiz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/timerQuiz/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/timerQuiz/js/questions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/timerQuiz/js/questions.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/timerQuiz/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/timerQuiz/js/script.js -------------------------------------------------------------------------------- /JavaScriptLogicGames/timerQuiz/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/timerQuiz/style.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/typing_speed_test_game/design.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/typing_speed_test_game/design.css -------------------------------------------------------------------------------- /JavaScriptLogicGames/typing_speed_test_game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/typing_speed_test_game/index.html -------------------------------------------------------------------------------- /JavaScriptLogicGames/typing_speed_test_game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/JavaScriptLogicGames/typing_speed_test_game/script.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/README.md -------------------------------------------------------------------------------- /Sample/CssTime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/Sample/CssTime/README.md -------------------------------------------------------------------------------- /Sample/CssTime/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/Sample/CssTime/index.html -------------------------------------------------------------------------------- /Sample/CssTime/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/Sample/CssTime/styles.css -------------------------------------------------------------------------------- /Sample/JavaScriptGameName/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/Sample/JavaScriptGameName/README.md -------------------------------------------------------------------------------- /Sample/JavaScriptGameName/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/Sample/JavaScriptGameName/index.html -------------------------------------------------------------------------------- /Sample/JavaScriptGameName/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/Sample/JavaScriptGameName/scripts.js -------------------------------------------------------------------------------- /Sample/JavaScriptGameName/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aanchi-glitch2744/JavaScriptGames-Hacktoberfest2023/HEAD/Sample/JavaScriptGameName/styles.css --------------------------------------------------------------------------------