-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (24 loc) · 853 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<title>DATE AND TIME</title>
</head>
<body>
<div class="container">
<div class="display-time"></div>
<div class="display-date">
<span id="day">day</span>,
<span id="daynum">00</span>
<span id="month">month</span>
<span id="year">0000</span>
</div>
</div>
<footer class="footer">
<p>© Made with <span class="heart" aria-label="love">❤️</span> by <a href="https://github.com/chinmayjha" target="_blank" rel="noopener noreferrer">Chinmay</a></p>
</footer>
<script src="script.js"></script>
</body>
</html>