-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
182 lines (177 loc) · 5.14 KB
/
Copy pathindex.html
File metadata and controls
182 lines (177 loc) · 5.14 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RRRT Clone</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
color: white;
text-align: center;
overflow-x: hidden;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 40px;
background: rgba(0, 0, 0, 0.7);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
backdrop-filter: blur(10px);
}
.logo {
font-size: 26px;
font-weight: bold;
text-transform: uppercase;
}
nav {
display: flex;
gap: 20px;
}
nav a {
color: white;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
nav a:hover {
color: #4caf50;
}
.hero {
padding: 120px 20px;
background: url('hero-bg.jpg') no-repeat center center/cover;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.btn {
background: linear-gradient(45deg, #4caf50, #2e7d32);
color: white;
padding: 12px 24px;
border-radius: 8px;
border: none;
cursor: pointer;
font-size: 18px;
transition: all 0.3s ease-in-out;
box-shadow: 0 4px 10px rgba(76, 175, 80, 0.5);
margin: 10px;
}
.btn:hover {
transform: scale(1.1);
box-shadow: 0 6px 20px rgba(76, 175, 80, 0.7);
}
.section {
padding: 40px;
margin: 40px auto;
background: rgba(255, 255, 255, 0.1);
border-radius: 12px;
width: 80%;
max-width: 900px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.section img {
width: 100px;
}
.token-stats {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
border: 1px solid white;
padding: 12px;
text-align: center;
}
footer {
background: rgba(0, 0, 0, 0.9);
padding: 20px;
margin-top: 50px;
}
@media (max-width: 768px) {
header {
flex-direction: column;
text-align: center;
padding: 10px;
}
nav {
flex-direction: column;
gap: 10px;
margin-top: 10px;
}
.hero {
padding: 80px 20px;
height: auto;
}
.section {
width: 90%;
}
.btn {
width: 100%;
}
}
</style>
</head>
<body>
<header>
<div class="logo">RRRT</div>
<nav>
<a href="#">Smart</a>
<a href="#">Telegram</a>
<a href="#">Twitter</a>
<a href="#">Buy RRRT</a>
</nav>
</header>
<section class="hero">
<h1>MAKE MONEY GO <span style="color: #4caf50;">$RRRT.</span></h1>
<p>The first omni-rewards token on Solana.</p>
<button class="btn">BUY RRRT</button>
<button class="btn">HOW IT WORKS</button>
</section>
<section class="section">
<h2>OMNI-REWARDS ON SOLANA</h2>
<p>$RRRT is the first omni-rewards token designed to automatically distribute rewards...</p>
<img src="brrr-coin.png" alt="RRRT Coin">
</section>
<section class="section">
<h2>$RRRT TOKENOMICS</h2>
<div class="token-stats">
<p><strong>Total Supply:</strong> 1,000,000,000</p>
<p><strong>Initial Liquidity:</strong> 100%</p>
<p><strong>Reward % Per Token:</strong> 5%</p>
</div>
</section>
<section class="section">
<h2>REWARDS SCHEDULE</h2>
<table>
<tr>
<th>Day</th><th>Reward</th>
</tr>
<tr>
<td>Monday</td><td>BTC</td>
</tr>
<tr>
<td>Tuesday</td><td>ETH</td>
</tr>
</table>
</section>
<footer>
<p>© 2025 RRRT. All rights reserved.</p>
</footer>
</body>
</html>