-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1.11 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
30
31
32
33
34
35
36
37
38
39
40
<!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, user-scalable=yes, shrink-to-fit=no">
<title>Analogue Clock</title>
<!-- Custom Styles -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Protest+Guerrilla&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="heading">
<h1>Ti<span>m</span>e is M<span>o</span>ney</h1>
</div>
<div class="watch">
<div class="rim">
<div class="twelve">12</div>
<div class="three">3</div>
<div class="six">6</div>
<div class="nine">9</div>
<div class="hour"></div>
<div class="minute"></div>
<div class="second"></div>
</div>
</div>
<div class="footer">
<p>Created By: <a href="https://telegram.com">Time</a>
</p>
</div>
<!-- JavaScript -->
<script src="main.js"></script>
</body>
</html>