-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (69 loc) · 2.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
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
<!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>Dojo Weather</title>
<link rel="stylesheet" href="./style.css">
<script src="./script.js" defer></script>
</head>
<body>
<nav>
<h1>DojoWeather</h1>
<div id="cities">
<p>Burbank</p>
<p>Chicago</p>
<p>Dallas</p>
</div>
</nav>
<div id="city">
<h2>San Jose</h2>
<div>
<label for="temp">Show temperature in</label>
<select name="Temp" id="temp" onchange="change()">
<option value="Celcius">°C</option>
<option value="Fahrenheit">°F</option>
</select>
</div>
</div>
<div id="weather_container">
<div class="weather">
<h2>Today</h2>
<img src="./assets\assets\some_clouds.png" alt="Cartoon Rain" class="weather_img">
<p>Some Rain</p>
<div class="temp">
<p class="high"><span class="Celcius">24°</span><span class="Fahrenheit" style="display: none;">75.2°</span></p>
<p class="cold"><span class="Celcius">18</span><span class="Fahrenheit" style="display: none;" >64.4</span></p>
</div>
</div>
<div class="weather">
<h2>Tomorrow</h2>
<img src="./assets/assets/some_sun.png" alt="Cartoon Sun" class="weather_img">
<p>Some Sun</p>
<div class="temp">
<p class="high"><span class="Celcius">24°</span><span class="Fahrenheit" style="display: none;">75.2°</span></p>
<p class="cold"><span class="Celcius">18</span><span class="Fahrenheit" style="display: none;" >64.4</span></p>
</div>
</div>
<div class="weather">
<h2>Friday</h2>
<img src="./assets/assets/some_clouds.png" alt="Cartoon clouds" class="weather_img">
<p>Some Clouds</p>
<div class="temp">
<p class="high"><span class="Celcius">24°</span><span class="Fahrenheit" style="display: none;">75.2°</span></p>
<p class="cold"><span class="Celcius">18</span><span class="Fahrenheit" style="display: none;" >64.4</span></p>
</div>
</div>
<div class="weather">
<h2>Saturday</h2>
<img src="./assets/assets/some_sun.png" alt="Cartoon sun" class="weather_img">
<p>Some Sun</p>
<div class="temp">
<p class="high"><span class="Celcius">24°</span><span class="Fahrenheit" style="display: none;">75.2°</span></p>
<p class="cold"><span class="Celcius">18</span><span class="Fahrenheit" style="display: none;" >64.4</span></p>
</div>
</div>
</div>
</body>
</html>