-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (26 loc) · 1.09 KB
/
index.html
File metadata and controls
30 lines (26 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>Currency App</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body onload="loadCurrencies();">
<div>
<h1>Currency Conversion </h1>
<p>Enter your amount in First to see how much it is Second</p>
<div class="inputWrapper">
<select id="from" onchange="convertCurrency();"></select>
<input type="number" id="fromAmount" placeholder="0.00" step="0.01" onkeyup="convertCurrency();" />
</div><!-- .inputWrapper -->
<div class="inputWrapper">
<p>TO</p>
<select id="to" onchange="convertCurrency();"></select>
<input type="number" id="toAmount" placeholder="0.00" step="0.01" disabled />
</div><!-- .inputWrapper -->
</div><!-- .container -->
<!-- Other Controllers/ Modules / Factories -->
<script src="app.js"></script>
</body>
</html>