-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="src/index.css" />
<title>Minecraft Weather</title>
</head>
<body>
<noscript>
<img
class="bg-image"
src="assets/images/sunny_1.png"
alt="minecraft screenshot"
/>
</noscript>
<img
class="bg-image hidden"
src="assets/images/sunny_1.png"
alt="minecraft screenshot"
loading="lazy"
/>
<div class="overlay-container">
<div class="weather-overlay">
<p class="temperature"></p>
<p class="description"></p>
<noscript>This page requires JavaScript.</noscript>
</div>
<div class="settings-overlay hidden">
<a href="" class="unit-switch"></a>
<a href="" class="position-switch"></a>
<p class="info-text"></p>
</div>
</div>
<script type="module" src="src/index.js"></script>
</body>
</html>