-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (29 loc) · 936 Bytes
/
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
<!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">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/weather-icons.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<title>JS Weather App</title>
</head>
<body>
<main>
<header>Loading … </header>
<section class="today">
<article>
<div class="day" id="today-day">Today</div>
<div class="today-temp" id="today-temp"></div>
<div class="today-icon"><i id="today-icon"></i></div>
<div class="description" id="today-description"></div>
<div id="today-minMax"></div>
</article>
</section>
<aside class="aside" id="aside">
</aside>
</main>
<script src="js/script.js"></script>
</body>
</html>