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

Currency Converter – JavaScript Mini Project By Anup Tamang (Moktan)

index.html <!DOCTYPE html> <html> <head> <title>Currency Converter</title> <link rel=”stylesheet” type=”text/css” href=”anup.css”> </head> <body> <div class=”container”> <h1>Currency Converter</h1> <div class=”form”> <label for=”amount”>Amount:</label> <input type=”number” id=”amount” placeholder=”Enter amount”> <label for=”from”>From:</label> <select id=”from”> <option value=”NPR”>Nepalese Rupee (NPR)</option> <option value=”INR”>Indian Rupee (INR)</option> <option value=”CNY”>Chinese Yuan (CNY)</option> <option value=”PKR”>Pakistani Rupee (PKR)</option> <option value=”AFN”>Afghan Afghani (AFN)</option> <option value=”BTN”>Bhutanese Ngultrum (BTN)</option> <option … Read moreCurrency Converter – JavaScript Mini Project By Anup Tamang (Moktan)