-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (47 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crypto web page</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<header>
<nav>
<div>
<img src="./image/white-logo.png" alt="logo" class="logo">
</div>
<div class="line"></div>
<div class="grow-list">
<ul class="list">
<li>Apps</li>
<li>DAO</li>
<li>Technology</li>
<li>Token</li>
<li>Contributors</li>
</ul>
</div>
<div>
<button class="small-button">Buy 1 Token</button>
</div>
</nav>
</header>
<main>
<div>
<h1 class="main-heading">
Lets build a better tommorow, together.
</h1>
<h3 class="description">
Buy 1 Token. Join the DAO. Change the world
</h3>
<button class="early-access-button">
Request Early Access
</button>
</div>
</main>
</div>
</body>
</html>