-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (33 loc) · 1.01 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
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minimal Clock</title>
<link rel="icon" type="image/x-icon" href="https://images.unsplash.com/photo-1575203091586-611fe505bb0e?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D">
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body>
<div class="bigbox" >
<div class="innerbox" id= "hour">
</div>
</div>
<div class="smallbox">
<div class="dot"></div>
<div class="dot "></div>
</div>
<div class="bigbox" >
<div class="innerbox" id= "min">
</div>
</div>
<div class="smallbox">
<div class="dot"></div>
<div class="dot"></div>
</div>
<div class="bigbox">
<div class="innerbox" id= "sec">
</div>
</div>
</body>
<script src="test.js"></script>
</html>