-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (57 loc) · 2.46 KB
/
index.html
File metadata and controls
70 lines (57 loc) · 2.46 KB
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<!-- custom css -->
<link rel="stylesheet" href="css/style.css">
<title>Currency Converter</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="upper">
<h1>Currency Converter</h1>
<p>Check out the value of your currency when converted to another at the REAL exchange rate.</p>
<hr class="my-4">
</div>
</div>
<div class="row">
<div class="col">
<form id="currency-form">
<div class="form-group">
<h5>Currency I have</h5>
<label for="from_amount">Amount:</label>
<input type="text" class="form-control" id="from_amount" value="1">
<small id="textHelp" class="form-text text-muted">Enter the amount.</small>
<label for="from_currency">Currency</label>
<select id="from_currency" class="form-control">
</select>
</div>
<div class="form-group">
<h5>Currency I Want</h5>
<label for="to_amount">Amount:</label>
<input type="text" class="form-control" id="to_amount" placeholder="pending" readonly>
<small id="textHelp" class="form-text text-muted">Enter the amount.</small>
<label for="to_currency">Currency</label>
<select id="to_currency" class="form-control">
</select>
</div>
<button type="submit" class="btn btn-primary">Convert</button>
</form>
</div>
<div class="col"></div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="node_modules/jquery/dist/jquery.min.js" ></script>
<script src="node_modules/popper.js/dist/popper.min.js" ></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js" ></script>
<script src="node_modules/idb/lib/idb.js"></script>
<script src="script.js"></script>
</body>
</html>