-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweather.html
More file actions
69 lines (67 loc) · 1.99 KB
/
weather.html
File metadata and controls
69 lines (67 loc) · 1.99 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
57
58
59
60
61
62
63
64
65
66
67
68
69
<!doctype html>
<html>
<head>
<style>
.center
{
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 384px;
height: 384px;
background-color: opacity(0%);
font-family: "Arial", "Roboto", sans-serif;
font-optical-sizing: auto;
font-size: 36px;
font-weight: bold;
font-style: normal;
font-variation-settings:
"wdth" 100;
}
</style>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<title>Leixlip Weather</title>
</head>
<body>
<script>
(function(d, s, id) {
if (d.getElementById(id)) {
if (window.__TOMORROW__) {
window.__TOMORROW__.renderWidget();
}
return;
}
const fjs = d.getElementsByTagName(s)[0];
const js = d.createElement(s);
js.id = id;
js.src = "https://www.tomorrow.io/v1/widget/sdk/sdk.bundle.min.js";
fjs.parentNode.insertBefore(js, fjs);
})(document, 'script', 'tomorrow-sdk');
</script>
<div class="tomorrow"
data-location-id="057302"
data-language="EN"
data-unit-system="METRIC"
data-skin="dark"
data-widget-type="aqiMini"
style="padding-bottom:22px;position:relative;"
>
<a
href="https://weather.tomorrow.io/"
rel="nofollow noopener noreferrer"
target="_blank"
style="position: absolute; bottom: 0; transform: translateX(-50%); left: 50%;"
>
<img
alt="Powered by Tomorrow.io"
src="https://weather-website-client.tomorrow.io/img/powered-by.svg"
width="250"
height="18"
/>
</a>
</div>
</body>
</html>