-
Notifications
You must be signed in to change notification settings - Fork 1
/
soon-landing.html
50 lines (45 loc) · 1.32 KB
/
soon-landing.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/logoW.png" type="image/x-icon">
<title>Mizu's little corner of the internet</title>
<style>
@font-face {
font-family: 'Gilroy-Bold';
src: url('fonts/Gilroy-Bold.ttf'); /* IE9 Compat Modes */
}
body {
background-color: #000;
}
/* loading */
.loader {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
animation: spin 2s ease-in-out infinite;
}
.landing-text {
position: absolute;
top: 50%;
left: 20%;
color: white;
font-family: 'Gilroy-Bold', Helvetica;
text-align: center;
font-size: 60px;
transform: translateY(-50%);
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<img src="img/logoW.png" alt="spinning mizu logo" class="loader">
<p class="landing-text">coming soon...</p>
</body>
</html>