Click Shape Game | JavaScript Mini Project | Kabir Shrestha
index.html <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <title>Click Shape Game</title> <link rel=”stylesheet” href=”styles.css”> </head> <body> <div class=”game-container”> <p class=”score”>Score: <span id=”score”>0</span></p> <div class=”shape” id=”shape”></div> </div> <script src=”script.js”></script> </body> </html> styles.css body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .game-container { text-align: center; } .shape { width: … Read moreClick Shape Game | JavaScript Mini Project | Kabir Shrestha