-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (54 loc) · 1.9 KB
/
index.html
File metadata and controls
54 lines (54 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CryptoConnect</title>
<link rel="stylesheet" href="styles.css">
<link href="cryptoicon.ico" rel="icon" type="image/x-icon" />
<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="logo.png" class="logo">
<ul>
<li><a href="#">Market</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Portfolio</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 phones </p>
<a href="#" class="btn">Explore More</a>
</div>
<div class="coinlist">
<div class="coin">
<img src="bitcoin.png">
<div>
<h2>$<span id="bitcoin">00</span></h2>
<P>Bitcoin</P>
</div>
</div>
<div class="coin">
<img src="ethereum.png">
<div>
<h2>$<span id="ethereum">00</span></h2>
<P>Ethereum</P>
</div>
</div>
<div class="coin">
<img src="dogecoin.png">
<div>
<h2>$<span id="dogecoin">00</span></h2>
<P>Dogecoin</P>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>