-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (46 loc) · 1.38 KB
/
Copy pathindex.html
File metadata and controls
54 lines (46 loc) · 1.38 KB
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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>App.Weather</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="wrapper">
<h1 class="wrapper__title">App.Weather</h1>
<div class="widget ">
<div class="widget__section thin-bar">
<div class="nav">
<div class="nav__button nav__button-red">
<svg height="30" width="30">
<circle cx="18" cy="18" r="7.5" fill="#ff605c" />
</svg>
</div>
<div class="nav__button nav__button-yellow">
<svg height="30" width="30">
<circle cx="18" cy="18" r="7.5" fill="#ffbf45" />
</svg>
</div>
<div class="nav__button nav__button-green">
<svg height="30" width="30">
<circle cx="18" cy="18" r="7.5" fill="#00c94c" />
</svg>
<p class="nav__title"></p>
</div>
</div>
</div>
<div class="widget__section">
<p class="section__weather hour"></p>
<br/>
<p class="section__weather city"></p>
<p class="temp"></p>
<canvas class="wthr icon" width="50" height="50"></canvas>
</div>
</div>
</div>
<script src="skycons.js"></script>
<script src="app.js"></script>
</body>
</html>