-
Notifications
You must be signed in to change notification settings - Fork 0
/
index1.html
85 lines (73 loc) · 3.69 KB
/
index1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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="app.css">
<title>Crypto Tracker</title>
<style>
body {
background-image: url('https://cdn.gobankingrates.com/wp-content/uploads/2019/07/bitcoin-cryptocurrency-iStock-879153690.jpg');
background-repeat: no-repeat;
background-size: cover;
}
img {
opacity: 0.5;
}
table{
color:rgb(17, 206, 244)
}
tr{
background-color: blue;
}
td{
background-color: rgb(14, 19, 20);
}
</style>
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<h1 class="col-md-7 text-center"><b>Crypto Tracker</b></h1>
<h4 class="col-md-7 text-center">By Tushara</h4>
<div class="col-md-6 row justify-content-center">
<div class="col-10">
<form action="" id="searchForm">
<div class="form-row">
<div class="col-12 form-group">
<label for="xyz"><b><h3>coin type</h3></b></label>
<select name="coinType" class="form-control" id="xyz">
<option value="bitcoin">Bitcoin</option>
<option value="dogecoin">Dogecoin</option>
<option value="ethereum">Ethereum</option>
<option value="polkadot">Polkadot</option>
<option value="tether">Tether</option>
</select>
</div>
</div>
<button type="submit" class="col-12 btn btn-primary">Get Price</button>
</form>
</div>
</div>
<div class="col-md-7 text-center row justify-content-center">
<table class="col-md-7 m-2" border="1px" id="tableResult">
</table>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="app.js"></script>
<script type='text/javascript' data-cfasync='false'>window.purechatApi = { l: [], t: [], on: function () { this.l.push(arguments); } }; (function () { var done = false; var script = document.createElement('script'); script.async = true; script.type = 'text/javascript'; script.src = 'https://app.purechat.com/VisitorWidget/WidgetScript'; document.getElementsByTagName('HEAD').item(0).appendChild(script); script.onreadystatechange = script.onload = function (e) { if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) { var w = new PCWidget({c: '473e1867-1177-490f-b95a-5935a10e49da', f: true }); done = true; } }; })();</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9NWXGGKVC8"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-9NWXGGKVC8');
</script>
</body>
</html>