-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (51 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Currency</title>
<link rel="stylesheet" href="currency.css">
<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"
/>
</head>
<body>
<h1 style="text-align: center;">Currency Converter</h1>
<div class="container">
<div class="amount">
<h3>Enter Amount</h3>
<input type="text" value="1">
</div>
<div class="from">
<p>From</p>
<div class="country">
<img src="https://flagsapi.com/IN/flat/64.png" id="img1"/>
<select name="from" id="fromSelect">
</select>
</div>
</div>
<i class="fa-solid fa-arrow-right-arrow-left" id="change"></i>
<div class="to">
<p>To</p>
<div class="country">
<img src="https://flagsapi.com/US/flat/64.png" id="img2"/>
<select name="to" id="toSelect">
</select>
</div>
</div>
<div class="msg-container">
<h4 id="msg"></h4>
<button type="button">Convert</button>
</div>
</div>
<footer align="right">
<h3 style="padding-right:1rem">Yash Pandav</h3>
</footer>
</body>
<script src="code.js"></script>
<script src="currency.js"></script>
</html>