-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (76 loc) · 3.04 KB
/
index.html
File metadata and controls
80 lines (76 loc) · 3.04 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>currencyConverter</title>
<script src="https://kit.fontawesome.com/270152f997.js" crossorigin="anonymous"></script>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=currency_exchange" />
<link rel="stylesheet" href="forex.css" />
</head>
<body>
<div class="navbar">
<span>forex</span>
<div class="nav-items">
<a href="/forex.html">Home</a>
<a href="https://jaswitha-athipatla.github.io/MY-PORTFOLIO/">About</a>
<a href="https://www.linkedin.com/in/jaswitha-athipatla/">Contact Us</a>
</div>
</div>
<main>
<div class="converter">
<div class="container">
<h1>Currency Converter</h1>
<form action="">
<div class="amount">
<div class="amtInput">Enter amount:</div>
<input type="text" value="" name="amtInput" class="amt" placeholder="100"/>
</div>
<div class="dropdown">
<div class="from">
<p>From</p>
<div class="select-container">
<img class="flagImg1" src="https://flagsapi.com/US/flat/64.png" alt="country flags" />
<select class="country1" name="from">
<option value="USD" selected>USD</option>
</select>
</div>
</div>
<span class="material-symbols-outlined">currency_exchange</span>
<div class="to">
<p>To</p>
<div class="select-container">
<img class="flagImg2" src="https://flagsapi.com/IN/shiny/64.png" alt="country flags"/>
<select class="country2" name="to">
<option value="INR" selected>IND</option>
</select>
</div>
</div>
</div>
<div class="msg">
<div class="message">1USD=80INR</div>
<button class="Exchange-currencyBtn">Exchange Currecy</button>
</div>
</form>
</div>
</div>
</main>
<footer>
<div class="contact-left">
<h1 class="sub-title">Contact Me</h1>
<p><i class="fa-solid fa-paper-plane"></i>athipatlajaswitha@gmail.com</p>
<p><i class="fa-solid fa-phone"></i>012-345-678</p>
<div class="social-icons">
<a href="https://www.linkedin.com/in/jaswitha-athipatla/"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://x.com/jaswitha082006"><i class="fa-brands fa-twitter"></i></a>
<a href="https://www.instagram.com/jaswithaathipatla/"><i class="fa-brands fa-instagram"></i></a>
<a href="#"><i class="fa-brands fa-facebook"></i></a>
</div><hr>
<div> © 2025 ForexConverter | All rights reserved</div>
</div>
</footer>
<script src="countryCodes.js"></script>
<script src="forex.js"></script>
</body>
</html>