Tower Block | JavaScript Mini Project | By Krisha Konda

index.html <link rel=”stylesheet” href=”./style.css”> <div id=”container”> <div id=”game”></div> <div id=”score”>0</div> <div id=”instructions”>Click to place the block</div> <div class=”game-over”> <h2>Game Over</h2> <p>You did great, you’re the best.</p> <p>Click or spacebar to start again</p> </div> <div class=”game-ready”> <div id=”start-button”>Start</div> <div></div> </div> </div> <script src=’https://cdnjs.cloudflare.com/ajax/libs/three.js/r83/three.min.js’></script> <script src=’https://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenMax.min.js’></script> <script src=”./main.js”></script> style.css html, body { margin: 0; overflow: hidden; height: … Read moreTower Block | JavaScript Mini Project | By Krisha Konda

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)