-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.09 KB
/
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
28
29
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JavaScript Clock 🕐</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
</head>
<body>
<main class="container fade-in">
<section class="digital-wrapper m-b-20">
<header><h3>JavaScript Clock</h3></header>
<p class="m-0">
<span class="digital-clock"></span>
<span class="digital-clock-ms m-l-n10"></span>
</p>
</section>
<section class="analogue-clock">
<div class="arm milliseconds"></div>
<div class="arm seconds"></div>
<div class="arm minutes"></div>
<div class="arm hours"></div>
</section>
<footer class="footer">© Roland Levy <span id="year"></span> <a href="https://rolandlevy.co.uk" target="_blank" class="new-tab-icon">see more of my projects</a></footer>
</main>
<script src="script.js" defer></script>
</body>
</html>