-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (27 loc) · 1.13 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
<!doctype html>
<html>
<head><marque><h2><title>Currency Converter App</title></h2></marque>
<link rel="stylesheet" href="layout.css">
</head>
<body>
<div class="mainbody">
<h3>Currency Converter Application</h3>
<form class="form1" name="form1" method="GET">
<input type="number" name="amount" id="amount" placeholder="enter amount to convert" required><br>
<label for="from-currency">from</label><br>
<select class="currency" id="from-currency">
<option value="" selected >Select</option>
</select><br>
<label for="to-currency">to</label><br>
<select class="currency" id="to-currency">
<option value="" selected >Select</option>
</select> <br>
<button class="form1" type="button" id="btnconvert" style="width: 25%; height: 30px;" >Convert</button><br>
<div class="msg-display" id="result"></div>
<div class="msg-display" id="alert"></div>
</form>
</div>
<script src="idb.js"></script>
<script src="main.js"> </script>
</body>
</html>