-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (42 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The Big Switch</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<section id="outer-case">
<div id="screen">
<div class="card">
<div class="card-face front">
<h2>Sun</h2>
<h2>28 July</h2>
<img src="images/day.jpg" alt="Bright sun and clouds" />
<h2>27℃</h2>
<p>
A mix of sun and cloud. Wind becoming southwest 20 km/h gusting to
40 late in the morning. High 27. Humidex 35. UV index 9 or very
high.
</p>
</div>
<div class="card-face back">
<h2>Sun</h2>
<h2>28 July</h2>
<img src="images/night.jpg" alt="Clear sky with moon and stars" />
<h2>21℃</h2>
<p>
A few clouds. Wind southwest 20 km/h gusting to 40 becoming light
in the evening. Low 21.
</p>
</div>
</div>
<button value="day">Day</button>
</div>
</section>
<script src="script.js"></script>
</body>
</html>
<!-- Photo by Jason Blackeye on Unsplash - Night
Photo by chuttersnap on Unsplash - Day -->