-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (50 loc) · 1.77 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
57
58
59
60
<!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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="src/styles.css">
<link rel="icon" href="src/assets/currency-icon.png">
<script src="src/javascript/script.js" type="module" defer></script>
<title>Currency Converter</title>
</head>
<body>
<div class="card">
<header aria-labelledby="title">
<h1 class="title">Currency Converter</h1>
</header>
<form action="#">
<div class="amount">
<label for="amount">Enter amount:</label>
<input id="amount" type="number" placeholder="amount">
</div>
<div class="drop-list">
<div class="from">
<label for="from">From</label>
<div class="select-wrapper">
<img src="https://flagsapi.com/US/flat/64.png" alt="country flag">
<select id="from"></select>
</div>
</div>
<div class="reverse-icon" id="reverse">
<i class="fas fa-exchange-alt"></i>
</div>
<div class="to">
<label for="to">To</label>
<div class="select-wrapper">
<img src="https://flagsapi.com/BR/flat/64.png" alt="country flag">
<select id="to"></select>
</div>
</div>
</div>
</form>
<footer>
<div class="exchange-rate">
<p id="result"></p>
</div>
<button id="convert" type="submit">Convert</button>
</footer>
</div>
</body>
</html>