-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpract.html
More file actions
57 lines (51 loc) · 1.69 KB
/
Copy pathpract.html
File metadata and controls
57 lines (51 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>wellcome to prac website</title>
<link rel="stylesheet" type="text/css" href="pract.css">
<script src="https://kit.fontawesome.com/9a6ef2505f.js"></script>
</head>
<body>
<div class="container">
<div class="nav">
<img src="logo4.png" alt="the logo">
<ul>
<li><a href="pract.html">Swap</a></li>
<li><a href="Token.html">Token</a></li>
<li><a href="NFTs.html">NFTs</a></li>
<li><a href="Pools.html">Pools</a></li>
<button>...</button>
</ul>
<input type="search" placeholder="Search Tokens and NFTS Collections">
<div class="connect">
<button class="btn-drop"><i class="fa-solid fa-angle-down"></i></button>
<button class="btn-connect">Connect</button>
</div>
</div>
<div class="main">
<div class="top-text">
<button class="swap-btn">Swap</button>
<button class="buy-btn">Buy</button>
<button class="set-btn"><i class="fa-solid fa-gear"></i></button>
</div>
<div class="you-pay">
<p>You pay</p>
<div class="sub-pay">
<input type="number" placeholder="0">
<button class="sel-coin">ETH<i class="fa-solid fa-angle-down"></i></button>
</div>
</div>
<div class="you-rec">
<p>You recieve</p>
<div class="sub-pay">
<input type="number" placeholder="0">
<button class="sel-coin">Select token<i class="fa-solid fa-angle-down"></i></button>
</div>
</div>
<button class="connect-btn">Connect wallet</button>
</div>
</div>
</body>
</html>