forked from Ada-C18/weather-report
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (42 loc) · 1.67 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
<!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" type="text/css" href="/styles/index.css"/>
<title>Weather Report</title>
</head>
<body>
<h1 id="pageHeader">Today's Weather In:</h1>
<section id="inputButtons">
<h2 id="cityName">Seattle</h2>
<input type="text" id="cityNameInput" value="Seattle">
<button id="getWeather">Get Current Weather</button>
<button id="cityNameReset">Reset City</button>
</section>
<section class="flexContainer">
<section id="userMods" class="flexItem">
<h2 id="tempHeading">Temperature (ºF)</h2>
<h3 id="tempText">80</h3>
<h4 id="conditionText"></h4>
<button id="tempIncrease">⬆️</button>
<button id="tempDecrease">⬇️</button>
<h2 id="skyHeading">Choose a scene:</h2>
<select id="skySelect">
<option>Sunny</option>
<option>Cloudy</option>
<option>Rainy</option>
<option>Windy</option>
<option>Snowy</option>
</select>
</section>
<section class="flexItem" id="windowScene">
<div id="skyScene">☁️☁️ ☁️ ☁️☁️ ☁️ ☀️☁️ ☁️☁️</div>
<div id="landscapeScene">🌵__🐍_🦂_🌵🌵__🐍_🏜_🦂</div>
</section>
</section>
<script src="./node_modules/axios/dist/axios.min.js"></script>
<script src="/src/index.js" type="text/javascript"></script>
</body>
</html>