Posts

Showing posts from October, 2024

clock project in JS

22/32 Make two files(html-for html code;script-for JS) html file code--> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Timer</title> </head> <body> <div> <h1 id="time"></h1> <button id="stop-btn">Stop Timer</button> <br> <button id="start-btn">Start Timer</button> </div> <script src="script.js"></script> </body> </html> script code--> const button = document.getElementById("stop-btn"); const button1 = document.getElementById("start-btn"); function showTime(){ const currentTime = new Date(); console.log(currentTime); const time = `${currentTime.getHours()}:${currentTime.getMinu...