-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (54 loc) · 1.93 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!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>Watch Face 01</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="main_container">
<img src="img/face01.jpg" alt="" id="watch_face">
<div class="content">
<div class="username">
<h1 id="username">hey omega</h1>
</div>
<div class="weather-container">
<img src="" alt="" id="weather-container_icon">
<h3 id="temperature-container">
<span id="address">your address</span>
<span id="temperature"> _ _</span>
<span id="deg_icon">°</span>
<span id="c_f">_</span>
</h3>
</div>
<div class="date-container">
<div id="day">Day</div>
<div id="date">Date(01/jan/2021)</div>
</div>
<div class="dial">
<div class="nibs">
<div id="nib_01">
<svg>
<polygon points="8,0 2,180 14,180" stroke-width="2" stroke="#6A503A" fill="none" />
</svg>
</div>
<div id="nib_02">
<svg>
<polygon points="8,8 0,180 16,180" fill="black" />
</svg>
</div>
<div id="nib_03">
<svg>
<polygon points="8,2 4,270 12,270" fill="#6A503A" />
</svg>
</div>
<div id="screw"></div>
</div>
</div>
</div>
</div>
<script src="script/script.js"></script>
</body>
</html>