-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
340 lines (316 loc) · 21.7 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
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="icon" href="assets/images/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="./dist/css/main.css" />
</head>
<body>
<div class="page-wrapper bg-dark">
<!-- header -->
<div class="header-wrapper">
<header class="header flex">
<div class="container w-full flex-1 flex">
<div class="header-content w-full flex-1 flex flex-col">
<nav class="navbar flex items-center justify-between">
<div class="brand-and-toggler flex items-center justify-between w-full">
<a href="#" class="navbar-brand flex items-center">
<img src="./assets/icons/site_icon.svg">
<span class="brand-text">Crypto</span>
</a>
<button type="button" class="navbar-show-btn">
<img src="./assets/icons/menu_icon.svg" />
</button>
</div>
<div class="navbar-list-wrapper flex items-center">
<ul class="nav-list flex items-center">
<button type="button" class="navbar-hide-btn">
<img src="./assets/icons/close.svg" />
</button>
<li class="nav-item">
<a href="#" class="nav-link text-base no-wrap">Buy / Sell</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link text-base no-wrap">Grow</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link text-base no-wrap">Market</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link text-base no-wrap">Business</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link text-base no-wrap">Support</a>
</li>
</ul>
<div class="sign-btns flex items-center">
<a href="#" class="btn text-base">Sign in</a>
<a href="#" class="btn btn-g-blue-veronica text-base">Sign up</a>
</div>
</div>
</nav>
<div class="header-intro flex-1 flex flex-col items-center justify-center text-center">
<h1>We make crypto clear and simple</h1>
<a href="#" class="btn btn-base btn-g-blue-veronica text-base">Get Started</a>
</div>
</div>
</div>
</header>
<div class="info flex items-center justify-center">
<div class="container">
<div class="info-content grid">
<div class="info-item text-center">
<img src="./assets/icons/create_icon.svg" alt="" />
<h3 class="info-item-title">Create</h3>
<p class="text-base text info-item-text">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Sapiente reprehenderit optio laborum ipsa veritatis! Asperiores?</p>
<a href="#" class="flex-inline items-center btn-link">
<span class="link-text text-lavender text text-base">Get Started</span>
<img src="./assets/icons/arrow.svg" class="link-icon" />
</a>
</div>
<div class="info-item text-center">
<img src="./assets/icons/login_icon.svg" alt="" />
<h3 class="info-item-title">Login</h3>
<p class="text-base text info-item-text">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Sapiente reprehenderit optio laborum ipsa veritatis! Asperiores?</p>
<a href="#" class="flex-inline items-center btn-link">
<span class="link-text text-lavender text text-base">Find an ATM</span>
<img src="./assets/icons/arrow.svg" class="link-icon" />
</a>
</div>
<div class="info-item text-center">
<img src="./assets/icons/manage_icon.svg" alt="" />
<h3 class="info-item-title">Manage</h3>
<p class="text-base text info-item-text">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Sapiente reprehenderit optio laborum ipsa veritatis! Asperiores?</p>
<a href="#" class="flex-inline items-center btn-link">
<span class="link-text text-lavender text text-base">Get Started</span>
<img src="./assets/icons/arrow.svg" class="link-icon" />
</a>
</div>
</div>
</div>
</div>
</div>
<!-- end of header -->
<main>
<section class="page-sc-one flex items-center justify-center">
<div class="container">
<div class="sc-one-content text-center">
<div class="title-wrapper">
<h2 class="large-title">A crypto mining platform that invest in you.</h2>
<p class="text text-base">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Repellendus qui ipsum libero, porro accusamus possimus.</p>
<a href="#" class="btn btn-base btn-g-blue-veronica text-base">Get Started</a>
</div>
</div>
</div>
</section>
<section class="page-sc-two flex items-center">
<div class="container">
<div class="sc-two-content">
<div class="sc-two-left">
<img src="./assets/images/support.png" />
</div>
<div class="sc-two-right">
<h2 class="large-title">24/7 access to full service customer support</h2>
<p class="text text-base">Lorem ipsum dolor sit amet consectetur adipisicing elit. Consequuntur dolores modi natus quod aspernatur dicta?</p>
<a href="#" class="btn btn-base btn-white text-base">Get Started</a>
</div>
</div>
</div>
</section>
<section class="page-sc-fees flex items-center">
<div class="container">
<div class="sc-fees-content text-center">
<div class="title-wrapper">
<h2 class="large-title">Buy and sell with the lowest fees in the industry</h2>
<p class="text text-base">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Non, pariatur sit. Id nisi perspiciatis eveniet?</p>
<a href="#" class="flex-inline items-center btn-link">
<span class="link-text text-lavender text text-base">Learn More</span>
<img src="./assets/icons/arrow.svg" class="link-icon" />
</a>
</div>
<div class="data-table-wrapper">
<div class="data-table">
<table class="table">
<tr class="grid">
<td class="flex items-center justify-center text-lg">Bitcoin</td>
<td class="flex items-center justify-center text-lavender text-lg">BTC</td>
<td class="flex items-center justify-center text-lg">$56,290.30</td>
<td class="flex items-center justify-center text-mint text-lg">+1.68%</td>
<td class="flex items-center justify-center">
<img src="./assets/images/small-graph1.png" class="graph-img" />
</td>
<td class="flex items-center justify-center">
<a href="#" class="table-link flex items-center">
<span class="link-text no-wrap text-base">Trade Now</span>
<img src="./assets/icons/arrow_white.svg" class="link-icon" />
</a>
</td>
</tr>
<tr class="grid">
<td class="flex items-center justify-center text-lg">Ethereum</td>
<td class="flex items-center justify-center text-lavender text-lg">ETH</td>
<td class="flex items-center justify-center text-lg">$7,290.30</td>
<td class="flex items-center justify-center text-mint text-lg">+4.25%</td>
<td class="flex items-center justify-center">
<img src="./assets/images/small-graph2.png" class="graph-img" />
</td>
<td class="flex items-center justify-center">
<a href="#" class="table-link flex items-center">
<span class="link-text no-wrap text-base">Trade Now</span>
<img src="./assets/icons/arrow_white.svg" class="link-icon" />
</a>
</td>
</tr>
<tr class="grid">
<td class="flex items-center justify-center text-lg">Cardano</td>
<td class="flex items-center justify-center text-lavender text-lg">ADA</td>
<td class="flex items-center justify-center text-lg">$1.8</td>
<td class="flex items-center justify-center text-mint text-lg">+3.43%</td>
<td class="flex items-center justify-center">
<img src="./assets/images/small-graph3.png" class="graph-img" />
</td>
<td class="flex items-center justify-center">
<a href="#" class="table-link flex items-center">
<span class="link-text no-wrap text-base">Trade Now</span>
<img src="./assets/icons/arrow_white.svg" class="link-icon" />
</a>
</td>
</tr>
<tr class="grid">
<td class="flex items-center justify-center text-lg">Wax</td>
<td class="flex items-center justify-center text-lavender text-lg">WAXP</td>
<td class="flex items-center justify-center text-lg">$0.97</td>
<td class="flex items-center justify-center text-mint text-lg">+2.62%</td>
<td class="flex items-center justify-center">
<img src="./assets/images/small-graph4.png" class="graph-img" />
</td>
<td class="flex items-center justify-center">
<a href="#" class="table-link flex items-center">
<span class="link-text no-wrap text-base">Trade Now</span>
<img src="./assets/icons/arrow_white.svg" class="link-icon" />
</a>
</td>
</tr>
<tr class="grid">
<td class="flex items-center justify-center text-lg">Poldadot</td>
<td class="flex items-center justify-center text-lavender text-lg">DOT</td>
<td class="flex items-center justify-center text-lg">$42.22</td>
<td class="flex items-center justify-center text-mint text-lg">+7.56%</td>
<td class="flex items-center justify-center">
<img src="./assets/images/small-graph5.png" class="graph-img" />
</td>
<td class="flex items-center justify-center">
<a href="#" class="table-link flex items-center">
<span class="link-text no-wrap text-base">Trade Now</span>
<img src="./assets/icons/arrow_white.svg" class="link-icon" />
</a>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</section>
<section class="page-sc-invest flex items-center">
<div class="container">
<div class="sc-two-content">
<div class="sc-two-left">
<h2 class="large-title">Take your first step into safe, secure crypto investing</h2>
<p class="text text-base">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Recusandae velit, laudantium voluptatem incidunt, aperiam reiciendis corporis, exercitationem obcaecati ut cum excepturi! Ea, alias dolores.</p>
<a href="#" class="btn btn-base btn-white text-base">Get Started</a>
</div>
<div class="sc-two-right">
<img src="./assets/images/support.png" />
</div>
</div>
</div>
</section>
<section class="page-sc-subscribe">
<div class="container">
<div class="sc-subscribe-content text-center">
<h2 class="large-title">Receive transmissions</h2>
<p class="text text-base">Unsubscribe at any time. <span class="text-white">Privacy policy</span></p>
<form class="flex items-center justify-center">
<div class="input-group flex items-center justify-between">
<input type="text" class="input-control" placeholder="Email Address">
<button type="submit" class="input-btn flex items-center justify-center">
<img src="./assets/icons//arrow_white.svg" />
</button>
</div>
</form>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<div class="footer-content grid">
<div class="footer-item">
<p class="text text-base">CoinFlip, the world's leading bitcoin ATM operator, makes it so flipping easy to buy and sell bitcoin via cash, card, or bank transfer.</p>
<p class="text text-base">Sign up to get the latest in CoinFlip news, discounts, and more.</p>
<form class="flex items-center">
<div class="input-group flex items-center justify-between">
<input type="text" class="input-control" placeholder="Email address" />
<button type="submit" class="input-btn flex items-center justify-center">
<img src="./assets/icons/arrow_white.svg" />
</button>
</div>
</form>
<p class="text text-base">© 2024 GPD Holdings, Template Create VENKY KUMAR</p>
</div>
<div class="footer-item">
<h4 class="footer-item-title text-gray text-base">Company</h4>
<ul class="footer-links">
<li>
<a href="#" class="footer-link text-gray text-base">About</a>
</li>
<li>
<a href="#" class="footer-link text-gray text-base">Careers</a>
</li>
<li>
<a href="#" class="footer-link text-gray text-base">Press</a>
</li>
<li>
<a href="#" class="footer-link text-gray text-base">News</a>
</li>
<li>
<a href="#" class="footer-link text-gray text-base">Links</a>
</li>
</ul>
</div>
<div class="footer-item">
<h4 class="footer-item-title text-gray text-base">Privacy Policy and Terms of Services</h4>
<ul class="footer-links">
<li>
<a href="#" class="footer-link text-gray text-base">CoinFlip Privacy Policy</a>
</li>
<li>
<a href="#" class="footer-link text-gray text-base">Biometrics Privacy Policy</a>
</li>
<li>
<a href="#" class="footer-link text-gray text-base">Financial Policy Notice</a>
</li>
<li>
<a href="#" class="footer-link text-gray text-base">Terms of Service</a>
</li>
<li>
<a href="#" class="footer-link text-gray text-base">Trade Desk Terms of Service</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
</div>
<script src="./app/js/script.js"></script>
</body>
</html>