-
Notifications
You must be signed in to change notification settings - Fork 577
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (66 loc) · 2.66 KB
/
index.html
File metadata and controls
66 lines (66 loc) · 2.66 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
<!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.75">
<title>Weather Report</title>
<!-- Link to Style Sheet -->
<link href="styles/style.css" rel="stylesheet" />
</head>
<body>
<div id="weather_body">
<header>
<a id="site_title" href="index.html">
<p>~ current temperature in ~</p>
</a>
<nav>
<div><button id="search_location" alt="Search or Enter Location">⌖</button></div>
<input type="search" id="location_text" value="Denver" placeholder="location"></input>
<div><button id="refresh_weather" alt="Refresh">⇢</button></div>
</nav>
</header>
<figure id="weather_display">
<text id="numeric_temperature">25</text>
<div id="units_div"><button id="temperature_units">°C</button></div>
</figure>
<figure id="change_temperature">
<button id="decrease"alt="Decrease Temperature"> - </button>
<button id="reset"alt="Reset Temperature">⃔ </button>
<button id="increase"alt="Increase Temperature"> + </button>
</figure>
<div id="sky">
<select name="sky_selector" id="sky_selector">
<option value=""> --- sky --- </option>
<option value="sunny">sunny</option>
<option value="cloudy">cloudy</option>
<option value="rainy">rainy</option>
<option value="snowy">snowy</option>
</select>
</div>
<div id="sky_display" class="ascii_art">
<pre>
| : : : : : │
| : : : : : │
| : : : : : │
</pre>
</div>
<div id="landscape" class="ascii_art">
<pre>
┼┼┼│ │ ┼┼│
┼┼┼┼┐ ┼┼┼│
┼┼┼┼│ * │┼┼┼┼│
┼┼┼┼┘ * │ ┼┼┼│
┼ ├────┼ ───────│ ┼┼┼│
┼┼┼┼│┐┐┐┐┐┐┐┐ ├├├├├├├├├──│┼ ┼┼┼│
┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼┼
********************************
********************************
********************************
</pre>
</div>
</div>
<script src="src/index.js"></script>
<script src="./node_modules/axios/dist/axios.min.js"></script>
</body>
</html>