-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (63 loc) · 2.86 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Local Weather App</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<link rel="manifest" href="manifest.json">
<link href="https://fonts.googleapis.com/css?family=Marmelad" rel="stylesheet">
</head>
<body>
<div id="app" class="container">
<header class="header">
<h1>Weather App</h1>
</header>
<div class="spinner-container" id="loading">
<div class="spinner"></div>
</div>
<main class="weather-container" id="weather-data">
<div class="location-info">
<h2><span id="city"></span><span id="state"></span> <span id="country"></span></h2>
</div>
<div class="weather-info">
<div class="weather-icon">
<p><img id="icon" src="" alt="weather-icon"> </p>
<p id="description"></p>
</div>
<div class="temp-info">
<span id="temp"> </span>
<sup> <a class="temp-btn" id="temp-unit-cel" href="">°C</a> | <a class="temp-btn" id="temp-unit-fahren"
href="">°F</a> </sup>
</div>
<div class="additional-info">
<p class="other-info-container">
<span class="other-info-title">Temp High <img src="images/icon-up.png"></span>
<span class="other-info-value" id="temp-high" title="Max tempearture"></span>
</p>
<p class="other-info-container">
<span class="other-info-title">Temp Low <img src="images/icon-down.png"> </span>
<span class="other-info-value" id="temp-low" title="Min temperature"></span>
</p>
<p class="other-info-container">
<span class="other-info-title">Humidity</span>
<span class="other-info-value" id="humidity"></span>
</p>
<p class="other-info-container">
<span class="other-info-title">Pressure</span>
<span class="other-info-value" id="pressure"></span>
</p>
</div>
</div>
</main>
<footer>
</footer>
</div>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<script src="js/main.js"></script>
</body>
</html>