-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.16 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.16 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
<!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="src/css/style.css">
<script src="src/js/main.js"></script>
<title>What's the weather? | Hack to Help Frontend Challenge</title>
</head>
<body>
<div class="container">
<div class="weather-body">
<div class="weather-heading">
<h1>What's the weather like?</h1>
<p class="lead">Let's find out!</p>
</div>
<div class="loading" id="loader">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<div class="weather-block hide" id="weather-block">
<div class="image">
<img id="weather-img">
</div>
<div class="degree">
<span id="temp"></span>
</div>
<div>
<span id="name"></span>,
<span id="country"></span>
</div>
</div>
</div>
</div>
</body>
</html>