-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Currency Converter</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/all.min.css">
</head>
<body>
<div class="currency-converter">
<h4>Currency Converter Application</h4>
<div>
<input type="number" class="amount" placeholder="Amount" required />
<div class="amountErrorMessage"></div>
</div>
<div class="drop-list">
<div class="from-container">
<span>from</span>
<div class="select-box">
<img src="https://flagcdn.com/64x48/us.png" class="flagImg from-flag" alt="flag">
<select class="from"></select>
</div>
</div>
<div class="icon-container">
<i class="fa-solid fa-right-left icon"></i>
</div>
<div class="to-container">
<span>To</span>
<div class="select-box">
<img src="https://flagcdn.com/64x48/us.png" class="flagImg to-flag" alt="flag">
<select class="to"></select>
</div>
</div>
</div>
<button id="convert">Convert</button>
<div class="totalConvertedRate">Result Here..</div>
</div>
<script src="js/index.js"></script>
<script src="js/country-list.js"></script>
</body>
</html>