forked from ada-c17/weather-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (77 loc) · 3.74 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
82
83
84
85
86
87
88
<!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="/styles/index.css" />
<title>Jande's Weather Report</title>
<link rel="icon" type="image/x-icon" href="./assets/favicon Jande Weather Report.png">
</head>
<body>
<main class="wrapper">
<!-- *****SKY***** -->
<div id="sky" role="img" aria-label="clear blue skies" title="Photo by Patrick Fore on Unsplash">
<div class="square sky--square inner">
<div id="sky--container">
<div id="sky--select-wrapper">
<select id="sky--select-box">
<option value=" " selected disabled hidden>select sky</option>
<option value="clear">clear</option>
<option value="cloudy">cloudy</option>
<option value="foggy">foggy</option>
<option value="rainy">rainy</option>
<option value="snowy">snowy</option>
<option value="sunny">sunny</option>
<option value="tornado">tornado</option>
<option value="other">other</option>
</select>
</div>
</div>
</div>
</div>
<!-- *****MID***** -->
<section id="mid" role="img" aria-label="white background with greyish curved lines" title="Photo by Jean-Philippe Delberghe on Unsplash">
<section id="mid--color">
<section id="weather">
<h1>Jande's Weather Report</h1>
</section>
<section id="location-display">
<div class="square location-display--square location-display--inner inner">
<div id="location-display--container">
<div id="location-display--display-name">Earth</div>
</div>
</div>
</section>
<section id="location-search">
<div class="square location-search--square inner">
<div id="location-search--container">
<div id="location-search--group">
<input id="location-input" type="text" placeholder="Pick a location on 🌍"/>
<input class="buttons" id="location-submit" type="submit" value="GET WEATHER">
</div>
<div id="downloading-progress-text"><br></div>
<div id="location-search--reset">
<input class="buttons" id="location-reset" type="reset" value="RESET">
</div>
</div>
</div>
</section>
</section>
</section>
</section>
<!-- *****TEMP***** -->
<section id="land" role="img" aria-label="green grass, leaves, and twigs" title="Photo by Bharath Raj N on Unsplash">
<div class="square land--square inner">
<div id="land--container">
<div id="arrow-decrease"></div>
<h2 id="temperature">70°F</h2>
<div id="arrow-increase"></div>
</div>
</div>
</section>
</main>
<script src="/src/index.js"></script>
<script src="./node_modules/axios/dist/axios.min.js"></script>
</body>
</html>