You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Web-Dev-For-Beginners/Display time on website/index.html

27 lines
744 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, intial-scale=1.0">
<title>Display Time On Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<!-- <img src="sunset-2501729_1280.png"> -->
<h1 id="current-time"></h1>
<div class="quotes">
<p>TODAY'S QUOTES</p>
<h2>Success doesnt come to you, you go to it.</h2>
</div>
</div>
<script>
let time = document.getElementById("current-time");
setInterval(() =>{
let d = new Date();
time.innerHTML = d.toLocaleTimeString();
},1000 )
</script>
</body>
</html>