-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (48 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Combinations - Coming Soon</title>
<link rel="icon" href="favicon.png" type="image/x-icon">
<style>
/* Load custom font */
@font-face {
font-family: 'Messer';
src: url('hinted-messerv20-condensed.woff2') format('woff2');
font-weight: normal;
font-style: normal;
}
/* Basic styling */
body, html {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #fff9e3; /* optional background color */
color: #000;
font-family: 'Messer', sans-serif;
font-size: 2rem;
text-align: center;
flex-direction: column; /* Ensure vertical alignment */
}
.coming-soon-gif {
margin: auto;
width: 600px;
}
h1 {
font-size: 3rem; /* Adjust size for emphasis */
margin: 0;
font-weight: normal;
}
p {
font-size: 2rem; /* Slightly smaller size */
margin: 0;
}
</style>
</head>
<body>
<img class="coming-soon-gif" src="https://i.imgur.com/5UWviQJ.gif" alt="GIF" />
</body>
</html>