-
Notifications
You must be signed in to change notification settings - Fork 0
/
_index_.html
75 lines (75 loc) · 2.22 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
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Weather-App</title>
</head>
<body>
<form method="post" id="form">
<section class="content">
<input type="search" id="city" placeholder="Search City." />
</section>
</form>
<main class="main" id="main">
<div class="main-body" id="mainBody">
<header class="body-header">
<span class="body-info">
<h3>Current Weather</h3>
</span>
<span class="body-country">
<h3 id="country">Monsterrado County</h3>
</span>
<span class="body-time">
<h4 id="time">10:00 PM</h4>
</span>
</header>
<section class="body-content">
<span class="content-icon">
<img
src="http://openweathermap.org/img/w/10d.png"
id="contentIcon"
/>
</span>
<span class="content-degree" id="contentDegree"
><sup id="degree"> °C</sup>
</span>
<span class="content-description">
<h3 id="description">Mostly Cloudy</h3>
</span>
</section>
</div>
<div class="main-footer">
<span class="footer-section">
<i class="small">Rain Per Hour</i>
<i id="rain">45</i>
</span>
<span class="footer-section">
<i class="small">Wind</i>
<i id="wind">45</i>
</span>
<span class="footer-section">
<i class="small">Humidity</i>
<i id="humidity">45</i>
</span>
<span class="footer-section">
<i class="small">Pressure</i>
<i id="pressure">45</i>
</span>
<span class="footer-section">
<i class="small">Visibility</i>
<i id="visibility">45</i>
</span>
</div>
<!-- <div id="response">
<img src="/" id="icon" />
<p id="location"></p>
<p id="description"></p>
<p id="weather"></p>
<p id="name"></p>
</div> -->
</main>
<script src="script.js"></script>
</body>
</html>