-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Google Font-->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap" rel="stylesheet">
<!-- stylesheet -->
<link rel="stylesheet" href="style.css">
<title>Currency Converter</title>
</head>
<body>
<div class="wrapper">
<div class="app-details">
<img src="img/app-icon.svg" class="app-icon">
<h1 class="app-title">Currency Converter</h1>
</div>
<label for="amount">Amount:</label>
<input type="number" id="amount" value="1">
<div class="dropdowns">
<select id="from-currency-select"></select>
<select id="to-currency-select"></select>
</div>
<button id="convert-button">Convert</button>
<p id="result"></p>
</div>
<!-- Script with country codes -->
<script src="js/currency-codes.js"></script>
<!-- Script with API Key -->
<script src="js/api-key.js"></script>
<!-- Script -->
<script src="js/script.js"></script>
</body>
</html>