-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (78 loc) · 2.34 KB
/
Copy pathindex.html
File metadata and controls
78 lines (78 loc) · 2.34 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
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rakit - Coming Soon</title>
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;600&display=swap" rel="stylesheet">
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: 'Rubik', sans-serif;
background-color: white;
color: #333;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
padding: 0 20px;
}
.logo {
width: 150px;
margin-bottom: 20px;
}
.brand-name {
color: #1fb4b6;
font-size: 3rem;
font-weight: 600;
margin-bottom: 15px;
}
.tagline {
color: #666;
font-size: 1.2rem;
max-width: 500px;
margin-bottom: 30px;
}
.countdown {
color: #1fb4b6;
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 30px;
}
.social-links {
margin-top: 30px;
}
.social-links a {
color: #1fb4b6;
margin: 0 10px;
text-decoration: none;
font-size: 1.5rem;
display: inline-block;
}
.social-links a:hover {
opacity: 0.8;
}
</style>
</head>
<body>
<div class="container">
<div class="logo">
<svg width="150" height="100" viewBox="0 0 150 100" xmlns="http://www.w3.org/2000/svg">
<text x="50%" y="50%" text-anchor="middle" fill="#1fb4b6" font-size="48" font-family="Rubik, sans-serif" font-weight="600">Rakit</text>
</svg>
</div>
<h1 class="brand-name">Rakit</h1>
<p class="tagline">We're working hard to bring something amazing to life. Stay tuned for our launch!</p>
<div class="countdown">Coming Soon</div>
<div class="social-links">
<a href="https://www.instagram.com/rakit_digital" target="_blank" rel="noopener noreferrer">Instagram</a>
</div>
</div>
</body>
</html>