-
Notifications
You must be signed in to change notification settings - Fork 577
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (59 loc) · 2.24 KB
/
index.html
File metadata and controls
67 lines (59 loc) · 2.24 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
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
<!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">
<title>Weather Report</title>
<link rel="stylesheet" href="styles/index.css" />
</head>
<body>
<header class="header_section">
<h1>Ashley's Weather Report</h1>
<span class="subheader">
<span id="headerCityName" class="header_city"></span>
</span>
</header>
<div class="input_container">
<i class="fa-thin fa-magnifying-glass"></i>
<input class="input_field" type="text" placeholder="Search City" name="city search" />
</div>
<div class="main_area">
<button id="realTime" class="realTimeButton">Real Time</button>
<section class="temperature_area">
<h2 id="temp_caption">Temperature</h2>
<div class="temp_txt"></div>
<div class="temp_wheel"></div>
<span id="increase_temp">⬆️</span>
<span id="decrease_temp">⬇️</span>
<div>
<span id="temp_value"></span>
</div>
</section>
<section class="skyArea">
<h2 id="skyCaption">Sky</h2>
<select id="skySelect">
<option value="none" selected disabled hidden>select sky</option>
<option value="sun">Sunshine</option>
<option value="overcast">Overcast</option>
<option value="rain">Rain Storm</option>
<option value="snow">Snow Storm</option>
</select>
</section>
<section class="city_section">
<h2 id="cityTitle">City Name</h2>
<input type="text" id="cityNameInput" value="Seattle 🌧" />
<button id="cityNameReset" class="resetButton">Reset</button>
</section>
<section class="gardenArea">
<h2 id="gardenCaption">Weather Garden</h2>
<div id="gardenStuff" class="garden">
<div id="sky"></div>
<div id="landscape"></div>
</div>
</section>
</div>
<script src="src/index.js"></script>
<script src="./node_modules/axios/dist/axios.min.js"></script>
</body>
</html>