-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
114 lines (106 loc) · 3.55 KB
/
About.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
<!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>Capstone</title>
<link rel="stylesheet" href="styles/about.css" />
</head>
<body>
<header>
<nav class="upper">
<ul>
<li><img src="/media/fb.svg" alt="fb logo" /></li>
<li><img src="/media/tw.svg" alt="tw logo" /></li>
<li>English</li>
<li>My Page</li>
<li>Logout</li>
</ul>
</nav>
<nav class="second">
<div class="Logo">
<a href="/Index.html"><img src="/media/luna.png" alt="luna" /></a>
</div>
<ul>
<li class="navlinks"><a href="/Index.html">Home</a></li>
<li class="navlinks">Program</li>
<li class="navlinks">Collaborate</li>
<li class="navlinks">Sponsers</li>
<li class="navlinks">News</li>
<li><p id="Buy" class="navlinks">Buy</p></li>
</ul>
</nav>
</header>
<section class="Hero">
<div class="hamb">
<span class="ham"></span>
<span class="ham"></span>
<span class="ham"></span>
</div>
<h1>
Terra Luna 2.0
<br />
Launch 2022
</h1>
<hr />
<p class="info">
The Terra protocol is the leading decentralized and open-source public
blockchain protocol. Luna provides its holders with staking rewards and
governance power. The Terra ecosystem is a quickly expanding network of
decentralized applications.
<br />
Luna is the Terra protocol’s native staking token. Luna is used for
governance and in mining. Users stake Luna to validators who record and
verify transactions on the blockchain in exchange for rewards from
transaction fees.
</p>
<p class="date">For any questions contacts us at</p>
<p class="mail">[email protected]</p>
</section>
<section class="stable">
<div class="stable-title">Terra</div>
<hr />
<p class="stable-info">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Odit itaque
quasi nemo, est dicta illo eligendi maxime quae perferendis porro fuga
cumque eius doloremque nam?
</p>
<div class="stable-picture"></div>
</section>
<section id="featured">
<div class="feature-title">Terra Stablecoin Projects</div>
<hr />
<p class="f-info">
Stablecoins are cryptocurrencies the value of which is pegged, or tied,
to that of another currency, commodity or financial instrument.
<br />
Stablecoins aim to provide an alternative to the high volatility of the
most popular cryptocurrencies including Bitcoin (BTC),
<br />
which has made such investments less suitable for wide use in
transactions.
</p>
<div class="projects">
<div class="luna">
<p class="lu">Luna</p>
<p class="lu-info">Market Capital 290M</p>
</div>
<div class="ust">
<p class="us">UST</p>
<p class="us-info">Market Capital 1B</p>
</div>
</div>
</section>
<footer>
<img class="foot-logo" src="/media/luna.png" alt="Luna" />
<div class="foot-info">
<p class="foot-info-one">
2022 Creative Something Singapore. No Rights Reserved
</p>
<p class="mandrin"></p>
</div>
</footer>
<script src="/js/navbar.js"></script>
</body>
</html>