-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (38 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Currency Exchange Rate App</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/rickshaw/1.6.1/rickshaw.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Currency Exchange App</h1>
<!--INTERFACE-->
<div id="main_wrapper">
<div id="base_wrapper">
<select name="base" class="currencies" id="base"></select>
<input type="number" name="curr1" min="0" id="curr1" placeholder='0' step='.1'>
</div>
<button id="swap"><i class="fa fa-2x fa-exchange" aria-hidden="true"></i>
</button>
<div id="target_wrapper">
<select name="target" class="currencies" id="target"></select>
<input type="number" name="curr2" min="0" id="curr2" placeholder='0' disabled>
</div>
</div>
<button id="history">Historical exchange rate (1Y)</button>
<!--CHART-->
<div id="chart"></div>
<div id="legend"></div>
<div id="signature">2017 © <a href="https://codepen.io/azdravkovski/">Aleksandar Zdravkovski</a></div>
<!--SCRIPTS-->
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/rickshaw/1.6.1/rickshaw.js"></script>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="src/app.js"></script>
</body>
</html>