-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (58 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Crypto Price visualizer</title>
<meta name="description" content="Cryptocurrency Web App.">
<meta name="author" content="Gerard Cabrerizo" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link href="https://fonts.googleapis.com/css?family=Lato:100|Monoton|Raleway:300|Source+Code+Pro:200" rel="stylesheet">
<link rel="stylesheet" media="screen" href="css/style.css">
</head>
<body>
<!-- particles.js container -->
<div class="container">
<div id="particles-js"></div>
<div class="hero">
<h2>Crypto Price Visualizer</h2>
<h3> Check the lastest price changes from the hundred principal cryptocurrencies.</h3>
</div>
</div>
<div class="features">
<div class="three">
<label>
<b>Maximum</b> Price
<input id="max" value="20000" class="max" placeholder="Maximum $20.000">
</label>
<label>
<b>Minimum</b> Price
<input type="text" id="min" value="20" class="min" autofocus placeholder="start from $0">
</label>
</div>
<div class="twoo">
<h3>Prices are displayed in USD. Move from $0 to $7.000 to watch prices and discover new currencies. </h3>
</div>
</div>
<div class="features2">
<canvas height="400px" id="myChart"></canvas>
</div>
<div class="pre-individuals">
<div class="individual">
<div class="left"> Name </div>
<div class="right">Price</div>
<div class="right">24 hours</div>
<div class="right">7 days</div>
</div>
</div>
<div class="individualsContainer"> </div>
<footer> Created by Gerard Cabrerizo -
<a href="https://github.com/gerardkabre">Github</a>
</footer>
<!-- scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.js"></script>
<script src="js/libraries/particles.js"></script>
<script src="js/libraries/particlesapp.js"></script>
<script src="js/libraries/chart.js"></script>
<script src="js/index.js"></script>
</body>
</html>