-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (38 loc) · 890 Bytes
/
index.html
File metadata and controls
41 lines (38 loc) · 890 Bytes
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script defer src="https://cloud.umami.is/script.js" data-website-id="8c88412c-a7d5-42f3-9644-f84e1b0c9b8a"></script>
<title>Think2 - Coming soon!</title>
<style>
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #030620;
color: #f2eb0a;
font-family: Arial, sans-serif;
margin: 0;
}
#container {
text-align: center;
}
#logo {
font-size: 4rem;
font-weight: bold;
}
#text {
font-size: 1.5rem;
margin-top: 1rem;
}
</style>
</head>
<body>
<div id="container">
<img id="logo" src="v1-yellow-bottom.svg" alt="Think2 Logo">
<div id="text">Coming soon !</div>
</div>
</body>
</html>