-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (36 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src = "script.js"></script>
<title>Currency Converter </title>
</head>
<body>
<main>
<section>
<div class = "convertor-Container">
<h1>Currency Converter</h1>
<br>
<div class="input-container">
<input type = "number" value="1" min= "1" class= "amount">
<select class="fromCurrency">
<option value="INR">INR</option>
<option value="USD">USD</option>
</select>
</div>
<br>
<div class="input-container">
<input type = "number" class= "convertedAmount">
<select class="toCurrency">
<option value="INR">INR</option>
<option value="USD">USD</option>
</select>
</div>
<div class="result">1 USD = 83 INR</div>
</div>
</section>
</main>
</body>
</html>