-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
176 lines (174 loc) · 6.77 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Crypto Checker</title>
<link href="https://fonts.googleapis.com/css?family=Work+Sans:400,700" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="wrapper">
<div id="header">
<div class="globalcrypto">
<div class="scroll-left">
<p id="scroll-bar">Total Market Cap: </p>
</div>
</div>
</div>
<div id="content">
<h2 id="header-title">Crypto Checker</h2>
<hr>
<div class="main-title">
<h2>Compare Two Currencies</h2>
</div>
<div class="dropdown">
<select class="ddmenu" id="dropdown1">
<option value="bitcoin">Bitcoin</option>
<option value="ethereum">Ethereum</option>
<option value="ripple">Ripple</option>
<option value="litecoin">Litecoin</option>
<option value="bitcoin-cash">Bitcoin Cash</option>
<option value="tron">TRON</option>
<option value="iota">IOTA</option>
<option value="dash">Dash</option>
<option value="monero">Monero</option>
<option value="raiblocks">RaiBlocks</option>
<option value="vechain">VeChain</option>
<option value="zcash">Zcash</option>
</select>
<select class="ddmenu" id="dropdown2">
<option value="bitcoin">Bitcoin</option>
<option value="ethereum">Ethereum</option>
<option value="ripple">Ripple</option>
<option value="litecoin">Litecoin</option>
<option value="bitcoin-cash">Bitcoin Cash</option>
<option value="tron">TRON</option>
<option value="iota">IOTA</option>
<option value="dash">Dash</option>
<option value="monero">Monero</option>
<option value="raiblocks">RaiBlocks</option>
<option value="vechain">VeChain</option>
<option value="zcash">Zcash</option>
</select>
<br>
<div class="buttons">
<button class="sbutton" type="button" id="sbutton" href="#">Submit</button>
<button class="sbutton" type="button" id="hide">Hide</button>
</div>
</div>
</div>
<br>
<div id="tables">
<div id ="cryptoinfo" class="cryptoinfo">
<table class="cryptoinfo1">
<tr>
<th>Name:</th>
<th id="cryptoname1" value=""></th>
</tr>
<tr>
<th>Symbol:</th>
<th id="cryptosymbol1" value=""></th>
</tr>
<tr>
<th>Rank:</th>
<th id="cryptorank1" value=""></th>
</tr>
<tr>
<th>Price:</th>
<th id="cryptoprice1" value=""></th>
</tr>
<tr>
<th>Price(BTC):</th>
<th id="cryptopriceb1" value=""></th>
</tr>
<tr>
<th>24h Volume:</th>
<th id="dayvolume1"></th>
</tr>
<tr>
<th>Market Cap Used:</th>
<th id="marketcap1"></th>
</tr>
<tr>
<th>Avaliable Supply:</th>
<th id="asupply1"></th>
</tr>
<tr>
<th>Total Supply:</th>
<th id="msupply1"></th>
</tr>
<tr>
<th>Percent Change(1h):</th>
<th id="pchange1h1"></th>
</tr>
<tr>
<th>Percent Change(24h):</th>
<th id="pchange24h1"></th>
</tr>
<tr>
<th>Percent Change(7d):</th>
<th id="pchange7d1"></th>
</tr>
</table>
<table class="cryptoinfo1">
<tr>
<th>Name:</th>
<th id="cryptoname2" value=""></th>
</tr>
<tr>
<th>Symbol:</th>
<th id="cryptosymbol2" value=""></th>
</tr>
<tr>
<th>Rank:</th>
<th id="cryptorank2" value=""></th>
</tr>
<tr>
<th>Price:</th>
<th id="cryptoprice2" value=""></th>
</tr>
<tr>
<th>Price(BTC):</th>
<th id="cryptopriceb2" value=""></th>
</tr>
<tr>
<th>24h Volume:</th>
<th id="dayvolume2"></th>
</tr>
<tr>
<th>Market Cap Used:</th>
<th id="marketcap2"></th>
</tr>
<tr>
<th>Avaliable Supply:</th>
<th id="asupply2"></th>
</tr>
<tr>
<th>Total Supply:</th>
<th id="msupply2"></th>
</tr>
<tr>
<th>Percent Change(1h):</th>
<th id="pchange1h2"></th>
</tr>
<tr>
<th>Percent Change(24h):</th>
<th id="pchange24h2"></th>
</tr>
<tr>
<th>Percent Change(7d):</th>
<th id="pchange7d2"></th>
</tr>
</table>
</div>
</div>
<div class="infoblocks">
<p></p>
</div>
</div>
<script src="main.js"></script>
</body>
</html>