forked from jwinf843/wdc-class-1-coinmarketcap-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
static-detail.html
55 lines (53 loc) · 1.55 KB
/
static-detail.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
<!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 href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet">
<style media="screen">
.container {
margin-top: 100px;
}
table {
margin-top: 50px;
}
td.change-up {
color: #093;
}
td.change-down {
color: #d14836;
}
p.price-usd {
font-size: 30px;
}
span.perc-change, p.price-btc {
color: grey;
font-weight: 100;
}
</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>
<img src="https://coincheckup.com/images/coins/monero.png" alt="" width="50">
Monero
<span>(XMR)</span>
</h1>
<hr>
<p class="lead price-usd">
$173.99 USD
<span class="perc-change">(-3.25%)</span>
</p>
<p class="lead price-btc">0.0258698 BTC</p>
</div>
</main>
</body>
</html>