-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
27 lines (27 loc) · 858 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
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Digital Clock</title>
<link rel="shortcut icon" href="clock.png" type="image/x-icon" />
<link rel="stylesheet" href="style.css" />
<script defer src="app.js"></script>
</head>
<body>
<div class="clock">
<h1 class="time">08:37</h1>
<div class="details">
<h3 class="ampm">PM</h3>
<h3 class="sec">20</h3>
</div>
<h2 class="date">
<span class="month">Mar</span>,
<span class="dayofweek">Sunday</span>
<span class="day">6</span>
</h2>
</div>
<!-- <footer><a>© by Andrew Tsegaye!</a></footer> -->
</body>
</html>