-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (65 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link
href="https://fonts.googleapis.com/css2?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="stylesheet" href="./css/styles.css">
<script src="https://code.jquery.com/jquery-3.7.0.min.js"
integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
<script src="./js/script.js" defer></script>
<title>Buy & Sell Cryptocurrency</title>
</head>
<body>
<div class="container">
<nav>
<img src="./assets/logo.png" alt="icon header" class="logo">
<ul>
<li>
<a href="#">Market</a>
</li>
<li>
<a href="#">Features</a>
</li>
<li>
<a href="#">White Papers</a>
</li>
<li>
<a href="#">About Us</a>
</li>
</ul>
<a href="#" class="btn">EN</a>
</nav>
<div class="content">
<h1>BUY & <br>SELL <span>Crypto</span></h1>
<p>World's biggest Cryptocurrency exchange available on web as well as mobile phone</p>
<a href="#" class="btn">EXPLORE MORE</a>
</div>
<div class="coin-list">
<div class="coin">
<img src="./assets/bitcoin.png" alt="bitcoin">
<div>
<h3>$<span id="bitcoin"></span></h3>
<p>Bitcoin</p>
</div>
</div>
<div class="coin">
<img src="./assets/ethereum.png" alt="ethereum">
<div>
<h3>$<span id="ethereum"></span></h3>
<p>Ethereum</p>
</div>
</div>
<div class="coin">
<img src="./assets/dogecoin.png" alt="dogecoin">
<div>
<h3>$<span id="dogecoin"></span></h3>
<p>Dogecoin</p>
</div>
</div>
</div>
</div>
</body>
</html>