-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
201 lines (159 loc) · 6.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
integrity="sha384-b6lVK+yci+bfDmaY1u0zE8YYJt0TZxLEAFyYSLHId4xoVvsrQu3INevFKo+Xir8e" crossorigin="anonymous">
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="/images/New Logo.png" alt="">
<h2>Romi Finance</h2>
</div>
<div class="nav-center">
<li>Home</li>
<a href="dashboard.html">
<li>Dashboard</li>
</a>
<li>NFT</li>
<a href="earn.html">
<li>Earn</li>
</a>
<li>Buy</li>
<li>Referalls</li>
<li>Ecosystem</li>
<li>About</li>
</div>
<div class="nav-right">
<button>Trade</button>
<div id="connect-wallet">
<img src="https://zomi.finance/static/media/ic_wallet_24.a19a6758.svg" alt="">
<h4>Connect wallet</h4>
</div>
<div class="networks">
<img src="images/ethereum.png" alt="">
<span> | </span>
<img src="images/menu.png" alt="">
</div>
</div>
</nav>
</header>
<div id="main">
<div class="content1">
<h1>Decentralized
Perpetual Exchange</h1>
<p>Trade BTC, ETH, AVAX and other top cryptocurrencies with up to 30x leverage directly from your wallet</p>
<button>Launch Exchange</button>
<div class="stats">
<div class="stats-1">
<img src="/images/trade.svg" alt="">
<div class="stats-1-text">
<p>Total Trading Volume</p>
<h2>$0</h2>
</div>
</div>
<div class="stats-1">
<img src="/images/interest.svg" alt="">
<div class="stats-1-text">
<p>Open Interest
</p>
<h2>$0</h2>
</div>
</div>
<div class="stats-1">
<img src="/images/totaluser.svg" alt="">
<div class="stats-1-text">
<p>Total Users</p>
<h2>$0</h2>
</div>
</div>
</div>
</div>
<hr>
<div class="content2">
<div class="content2-inline">
<div class="content2-in">
<div class="content2-in-1">
<img src="images/liquidity.svg" alt="">
<h3>Reduce Liquidation Risks</h3>
</div>
<p>An aggregate of high-quality price feeds determine when liquidations occur. This keeps positions
safe
from temporary wicks.</p>
</div>
<div class="content2-in">
<div class="content2-in-1">
<img src="images/cost.svg" alt="">
<h3>Save on Costs</h3>
</div>
<p>Enter and exit positions with minimal spread and zero price impact. Get the optimal price without
incurring additional costs.</p>
</div>
<div class="content2-in">
<div class="content2-in-1">
<img src="images/swap.svg" alt="">
<h3>Simple Swaps</h3>
</div>
<p>Open positions through a simple swap interface. Conveniently swap from any supported asset into
the position of your choice.</p>
</div>
</div>
<h1>Two tokens create our ecosystem</h1>
<div class="content2-inline1">
<div class="content2-inline1-in">
<div class="title">
<img src="images/romi.png" alt="">
<h2>$ROMI</h2>
</div>
<h4>$ROMI is the utility and governance token. Accrues 30% of the platform's generated fees.</h4>
<p>Ethereum APR: 0.00%</p>
<div class="title">
<button>BUY</button>
<p>Read more</p>
</div>
</div>
<div class="content2-inline1-in">
<div class="title">
<img src="images/rlp.png" alt="">
<h2>$RLP</h2>
</div>
<h4>$RLP is the liquidity provider token. Accrues 70% of the platform's generated fees.</h4>
<p>Ethereum APR: 1,654,630,474.77%</p>
<div class="title">
<button>BUY</button>
<p>Read more</p>
</div>
</div>
</div>
</div>
</div>
<hr>
<footer>
<div class="footer-inline">
<div id="logo">
<img src="/images/New Logo.png" alt="">
<h2>Romi Finance</h2>
</div>
<div class="icons">
<i class="bi bi-twitter"></i>
<i class="bi bi-medium"></i>
<i class="bi bi-github"></i>
<i class="bi bi-telegram"></i>
<i class="bi bi-discord"></i>
</div>
<div class="footer-txt">
<p>Terms and Conditions</p>
<p>Referral Terms</p>
<p>
Media Kit
</p>
</div>
</div>
</footer>
</body>
</html>