Created
November 9, 2022 03:26
-
-
Save Tanu-N-Prabhu/86f4968f7d85c0d57d3972756652e052 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Digital Clock</title> | |
<!--Referencing a CSS Style Sheet--> | |
<link rel="stylesheet" href="./style.css"> | |
</head> | |
<body> | |
<!--Creating a small container for the clock to stay in--> | |
<div class="container"> | |
<div class="clock"></div> | |
</div> | |
<script src="./script.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment