-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (53 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-3.7.0.min.js" integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<nav>
<img src="images/logo.png" 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> Discover the world of cryptocurrencies with our comprehensive and <br>user-friendlycrypto website.</p>
<a href="https://www.coingecko.com/" class="btn">EXPLORE MORE</a>
</div>
<div class="coin-list">
<div class="coin">
<img src="images/bitcoin.png">
<div>
<h3>Rs -<span id="bitcoin"></span></h3>
<p>Bitcoin</p>
</div>
</div>
<div class="coin">
<img src="images/ethereum.png">
<div>
<h3>Rs -<span id="ethereum"></span></h3>
<p>Ethereum</p>
</div>
</div>
<div class="coin">
<img src="images/dogecoin.png">
<div>
<h3>Rs -<span id="dogecoin"></span></h3>
<p>Dodgecoin</p>
</div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>