forked from ada-c17/weather-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1.86 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
<!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 href = "styles/index.css" rel="stylesheet">
</head>
<body>
<h1> Weather Report</h1>
<h2 id="subheader">What I Wish The Weather Was Like in Brownsville</h2>
<main>
<div id="center-section" class="background" >
<div id="options" >
<select id="sky-select">
<option value="change-sky">Change Sky</option>
<option value="sunny">Sunny</option>
<option value="cloudy">Cloudy</option>
<option value="rainy">Rainy</option>
<option value="snowy">Snowy</option>
</select>
<span id="set-city">
<label>City:</label>
<input type="text" name="city">
<button id="reset-button">Reset</button>
</span>
<button id="get-weather-button">Get Realtime Weather</button>
</div>
<div id="temp-control">
<img src="images/left-arrow.png" alt="Left pointing arrow" class="arrow" id="left-arrow">
<h2 id="temp">75°F</h2>
<img src="images/right-arrow.png" alt="Right pointing arrow" class="arrow" id="right-arrow">
</div>
<div id="landscape-container">
<img src="images/60.png" alt="Oak tree from Animal Crossings New Horizions" id="landscape">
</div>
</div>
</main>
<p>Website design inspired by <a href="https://nookipedia.com/wiki/Main_Page">Nookipedia</a></p>
</body>
<script src="./node_modules/axios/dist/axios.min.js"></script>
<script src="src/index.js"></script>
</html>