-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (66 loc) · 1.64 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!--
@Author: Huugo Wahalahti
@Date: 2023-11-11 15:29:56
@Last Modified by: Huugo Wahalahti
@Last Modified time: 2023-11-11 16:16:55
-->
<!DOCTYPE html>
<html>
<head>
<title>Huugo Wahalahti</title>
<meta charset="UTF-8">
<style>
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;900&display=swap');
html {
font-family: 'Unbounded', sans-serif;
}
h1 {
font-weight: 900;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
position: relative;
}
.text-box {
text-align: left;
text-decoration: none;
color: #141414;
padding: 5px;
}
a {
text-decoration: none;
}
.logo {
height: 15vh;
}
.corner-image {
position: absolute;
bottom: 0;
right: 0;
}
</style>
</head>
<body>
<a href="https://huugeli.net/">
<div class="text-box">
<h1>Tämä verkko-osoite on varattu</h1>
<p>This domain is reserved | Denna doman är reserverad</p>
</div>
<img class="logo" src="img/HuugoWahalahti_FI.svg">
<img class="corner-image" src="img/H_Cloud.svg">
</a>
<script>
var logos = ['img/HuugoWahalahti_FI.svg', 'img/HuugoWahalahti_EN.svg', 'img/HuugoWahalahti_SV.svg'];
var logoIndex = 0;
setInterval(function() {
logoIndex = (logoIndex + 1) % logos.length;
document.querySelector('.logo').src = logos[logoIndex];
}, 5000);
</script>
</body>
</html>