-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (22 loc) · 941 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Weather App</title>
</head>
<body>
<div class="Background">
<video id="BgVideo" src="/videos/Sunny.mp4" autoplay muted loop></video>
</div>
<div class="window">
<center><img src="/icons/Sun.png" class="icon"><br></center>
<h3 class="d-IB">Time zone: </h3><h3 class="TimeZone d-IB"></h3><br>
<h3 class="d-IB">Temperature: </h3><h3 class="Temperature d-IB"></h3> <button class="d-IB changeTempK">K</button> <button class="d-IB changeTempF">F</button>
<h3 class="d-IB">Weather Type: </h3><h3 class="weather d-IB"></h3><br>
<h3 class="d-IB">Description: </h3><h3 class="Description d-IB"></h3><br>
</div>
<script src="main.js"></script>
</body>
</html>