-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="icons/style.css">
<title>Currency Converter App</title>
</head>
<body>
<div class="app">
<div class="container">
<!-- Upper Half -->
<div class="top">
<h3>Currency Converter</h3>
<!-- From -->
<div class="from">
<h4>From</h4>
<div class="cont">
<input type="number" placeholder="Enter Amount">
<div class="select-box">
<img src="https://flagcdn.com/48x36/us.png">
<select name="" id="from"><option value="">USD</option></select>
</div>
</div>
</div>
</div>
<div class="exchange-icon"><span class="icon-exchange"></span></div>
<!-- Lower Half -->
<div class="bottom">
<!-- To -->
<div class="to">
<h4>To</h4>
<div class="output">
<div class="select-box">
<img src="https://flagcdn.com/48x36/eg.png">
<select name="" id="to"><option value="">USD</option></select>
</div>
<p id="output">1 USD = 18.56 EGP</p>
</div>
</div>
<button>Get Exchange Rate</button>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>