forked from ada-c17/weather-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (81 loc) · 3.27 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
76
77
78
79
80
81
<!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 href="./styles/index.css" rel="stylesheet"/>
<script src="./node_modules/axios/dist/axios.min.js"></script>
<script src="./src/index.js"></script>
<title>Weather Report</title>
</head>
<body>
<div id="headerSection">
<header>Weather report </header>
<div id="lovelyCity">For the lovely city of ✨<span id="cityNameHeader">Happyland</span>✨</div>
</div>
<div class="boxes">
<div class="block1">
<section>
<div id="box1" class="box">
<h3 class="boxHeaders">Temperature</h3>
<div id="box1Elements">
<div id="upButton">
<button type="button">⬆️</button>
</div>
<div id="temperatureBlock">
<section id="currentTemperature">
<span id="temperatureCount">60</span>
</section>
<section id="getTemp">
<input id="getRealtimeTemperature" value="Get Realtime Temperature">
</section>
</div>
<div id="downButton">
<button type="button">⬇️</button>
</div>
</div>
</div>
</section>
<section>
<div id="box2" class="box">
<h3 class="boxHeaders">Sky</h3>
<div id="box2Elements">
<select id="sky" name="sky">
<option value="">Select One …</option>
<option value="sunny">Sunny</option>
<option value="cloudy">Cloudy</option>
<option value="rainy">Rainy</option>
<option value="snowy">Snowy</option>
</select>
</div>
</div>
</section>
<section>
<div id="box3" class="box">
<h3 class="boxHeaders">City Name</h3>
<div id="box3Elements">
<div id="cityNameInput">
<input placeholder="enter city name" id="cityName" name="cityName"/>
<input id="resetButton" value="Reset">
</div>
</div>
</div>
</section>
</div>
<div class="block2">
<section>
<h3 id="box4Header">Weather garden</h3>
<div id="box4" class="box">
<div id="sky">
<span id="currentSky">☁️ ☁️ ☁️ ☀️ ☁️ ☁️</span>
</div>
<div id="landscape">
<span id="currentLandscape">🌾🌾_🍃_🪨__🛤_🌾🌾🌾_🍃</span>
</div>
</div>
</section>
</div>
</div>
</body>
</html>