-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/styles.css">
<script type="module" src="./js/main.js" defer></script>
<title>Weather App</title>
</head>
<body>
<header>
<h1>Aondrejs Weather Application</h1>
</header>
<section id="main">
<h2 id="cityName"></h1>
<h2 id="weather"><span class="degree">°</span></h1>
<p id="clouds"></p>
<p>H:<span id="high"><span class="degree">°</span> </span> L:<span id="low"><span class="degree">°</span></span></p>
</section>
<section id="getCity">
<input id="selectCity" type="text" value="bakersfield" placeholder="Enter city name"><br>
<input id="selectState" type="text" value="california" placeholder="Enter state or country name"><br>
<button id="btn">Submit</button>
</section>
<section id="days">
<h2>5 Day forecast</h2>
<div id="one">
<p id="dayOne"></p>
<p id="cloudyOne"></p>
<p id="tempOne"></p>
</div>
<div id="two">
<p id="dayTwo"></p>
<p id="cloudyTwo"></p>
<p id="tempTwo"></p>
</div>
<div id="three">
<p id="dayThree"></p>
<p id="cloudyThree"></p>
<p id="tempThree"></p>
</div>
<div id="four">
<p id="dayFour"></p>
<p id="cloudyFour"></p>
<p id="tempFour"></p>
</div>
<div id="five">
<p id="dayFive"></p>
<p id="cloudyFive"></p>
<p id="tempFive"></p>
</div>
</section>
</body>
</html>