-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (45 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Currency Converter</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap"
/>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="wrapper">
<header>Currency Converter</header>
<form action="#">
<div class="amount">
<p>Enter Amount</p>
<input type="text" id="amount" value="1" />
</div>
<div class="drop-list">
<div class="from">
<p>From</p>
<select id="fromCurrency"></select>
<img alt="flag" />
</div>
<div class="icon"><i class="fas fa-exchange-alt"></i></div>
<div class="to">
<p>To</p>
<select id="toCurrency"></select>
<img alt="flag" />
</div>
</div>
<div class="exchange-rate" id="exchangeRateText">
Getting exchange rate...
</div>
<button id="getButton">Get Exchange Rate</button>
</form>
</div>
<script src="./main.js"></script>
</body>
</html>