-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (42 loc) · 1.74 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
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>OBS Twitch API Overlay</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="label">
<!-- Location -->
<div id="location-value"></div>
<!-- Overall weather -->
<div class="label-box">
<img id="weather-icon" src="img/sun.png" alt="Overall weather condition" />
<span class="label-holder">
<span class="label-value" id="temperature-value"></span><small class="label-unit">°C</small>
</span>
</div>
<!-- Wind -->
<div class="label-box">
<img id="wind-icon" src="img/compass.png" alt="Wind direction" />
<span class="label-holder">
<span class="label-value" id="wind-value"></span><small class="label-unit">km/h</small>
</span>
</div>
<!-- Humidity -->
<div class="label-box">
<img id="humidity-icon" src="img/humidity.png" alt="Humidity" />
<span class="label-holder">
<span class="label-value" id="humidity-value"></span><small class="label-unit">%</small>
</span>
</div>
<div id="error-box">
<div id="error-message"></div>
<small id="error-details"></small>
</div>
</div>
<script src="//unpkg.com/twitch-js@2.0.0-beta.33/dist/twitch.js"></script>
<script src="js/script.js"></script>
</body>
</html>