-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (54 loc) · 1.47 KB
/
index.html
File metadata and controls
56 lines (54 loc) · 1.47 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Our weather dashboard</title>
<script
src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="
crossorigin="anonymous">
</script>
<script>
$(document).ready(function() {
// auto refresh page after 15 minutes
setInterval('refreshPage()', 900000);
});
function refreshPage() {
location.reload();
}
</script>
<style>
body{
background: black;
}
p{
color: white;
}
iframe{
justify-content: center;
border: 0;
height: 320px;
width: 250px;
}
</style>
</head>
<body>
<iframe src="./html/weatherblr.html"></iframe>
<iframe src="./html/weathertvm.html"></iframe>
<iframe src="./html/weathernoida.html"></iframe>
<iframe src="./html/weatherlko.html"></iframe>
<iframe src="./html/weathermum.html"></iframe>
<iframe src="./html/weatherkhe.html"></iframe>
<iframe src="./html/weatherstuttgart.html"></iframe>
<iframe src="./html/weatherstockholm.html"></iframe>
<iframe src="./html/weatherglasgow.html"></iframe>
<iframe src="./html/weatheruk.html"></iframe>
</body>
<footer id="footer">
<p>
Powered by <a href="https://www.weatherbit.io">WeatherBit</a>
<br>
Made with ❤ in Karlsruhe, Germany
</p>
</footer>
</html>