-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 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
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Weather App</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="css/weather-icons.css">
<link rel="stylesheet" href="css/weather-icons-wind.css">
</head>
<body>
<div class="wrapper">
<header>
<h1>Weather App</h1>
</header>
<section class="main box">
<div id="icon">...</div>
<div id="date"></div>
<div id="temperature"></div>
<div id="location"></div>
</section>
<aside class="sidebar box">
<div id="humidity"></div>
<div id="cloud"></div>
<div id="wind"></div>
</aside>
</div>
<footer><p>Made with patience by
<a href="https://twitter.com/mrjaypeasmith" target="_blank">@mrjaypeasmith</a></p>
<p>BETA 1.1</p>
</footer>
<script src="app.js"></script>
</body>
</html>