-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (56 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A simple crypto price tracker">
<meta name="keywords" content="one, two, three">
<title>CoinCloud</title>
<link rel="icon" type="image/x-icon" href="./img/cloudLogo2.png" />
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>CoinCloud</h1>
<img id="cloud" src="./img/cloudLogo.png" alt="">
</header>
<div id="search"><input type="text" name="" value="XMR">
<button type="button" name="button">Search</button>
</div>
<span id="err"></span>
<table>
<tr>
<th class="num">#</th>
<th class="name">Name</th>
<th class="ticker">Ticker</th>
<th class="price">Price</th>
<th class="24">24hr %</th>
<th class="cap">Cap</th>
</tr>
<tr>
<td class="number">1</td>
<td>
<div class="center"><img id="logo" src="" alt=""><span id="coin"></span></div>
</td>
<td class="ticker"><span id="symbol"></span></td>
<td><span></span><span id="price"></span></td>
<td class="change"><span id="24hr"></span><span>%</span></td>
<td class="cap"><span></span><span id="cap"></span><span id="bOrM"></span></td>
</tr>
</table>
<h2>Top 100:</h2>
<table id="coinTable">
<tr>
<th class="num">#</th>
<th class="name">Name</th>
<th class="ticker">Ticker</th>
<th class="price">Price</th>
<th class="24">24hr %</th>
<th class="cap">Cap</th>
</tr>
</table>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>