-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (46 loc) · 1.5 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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Alc Project</title>
<link href="index.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="container">
<h1>Currency Converter</h1>
<div class="main" align="center">
<form action="#">
<div align="center" class="go-down">
<div class="rightMove ">
<label for="currency-to">To:</label>
<select id="currency-to" >
</select>
</div>
</div>
<div align="center">
<div class="rightMove ">
<label for="currency-from">From:</label>
<select id="currency-from">
</select>
</div>
<div class="leftMove">
<label for="currency">Amount:</label>
<input type="number" id="currency">
</div>
</div>
</form>
<br/>
<br/>
<div align="center" style="margin-top: 60px">
<label for="currency2">Result:</label>
<input type="number" id="currency2" disabled>
</div>
<div class="move-down">
<button onclick="convertCurrency()">Convert</button>
<button onclick="clearField()">Clear Field</button>
</div>
</div>
<br/>
<script src="IndexController.js" type="application/javascript"></script>
</body>
</html>