forked from jwinf843/wdc-class-1-coinmarketcap-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
static-index.html
80 lines (71 loc) · 2.91 KB
/
static-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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="https://rmotr.com/static/favicons/apple-icon-60x60.c69b596ccabe.png">
<title>Coinmarketcap clone</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/open-iconic/1.1.1/font/css/open-iconic.min.css">
<style media="screen">
.container {
margin-top: 100px;
}
table {
margin-top: 50px;
}
td.change-up {
color: #093;
}
td.change-down {
color: #d14836;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top">
<a class="navbar-brand" href="#"> <img src="https://rmotr.com/static/favicons/apple-icon-60x60.c69b596ccabe.png" alt="" width="32"> </a>
</nav>
<main role="main" class="container">
<div class="starter-template">
<h1>Coinmarketcap clone</h1>
<p class="lead">This is a sample copy of <a href="https://coinmarketcap.com/" target="_blank">https://coinmarketcap.com/</a>, only for educational purposes.</p>
<form class="" action="" method="get">
<div class="form-group">
<input type="text" name="search" class="form-control" placeholder="Search cryptos">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
<table class="table table-striped">
<thead>
<tr>
<th><a href="?order_param=rank&order_direction=asc"># <span class="oi" data-glyph="sort-ascending"></span></a></th>
<th>Name</th>
<th>Market Cap</th>
<th><a href="?order_param=price&order_direction=asc">Price <span class="oi" data-glyph="sort-ascending"></span></a></th>
<th>Volume (24h)</th>
<th>Circulating supply</th>
<th>Change (24h)</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>
<img src="https://raw.githubusercontent.com/atomiclabs/cryptocurrency-icons/master/128/color/btc.png" alt="" width="16">
<a href="/currencies/1">Bitcoin</a>
</td>
<td>$69,031,755,405</td>
<td>$3,965.85</td>
<td>$5,096,149,710.8</td>
<td>17,406,562 BTC</td>
<td class="change-up">2.24%</td>
</tr>
</tbody>
</table>
</div>
</main>
</body>
</html>