-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (55 loc) · 1.76 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
<!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="styles.css" />
<link rel="icon" href="money.png" type="image/x-icon" />
<title>HKD Currency Converter</title>
</head>
<body>
<div class="container">
<div class="logo">
<video src="logo.mp4" autoplay muted>
Your browser does not support the video tag.
</video>
</div>
<div class="input-field">
<select id="original-currency"></select>
<input
type="number"
min="0.1"
id="amount"
placeholder=" Enter the amount"
/>
</div>
<select id="currency"></select>
<div class="button-container">
<button id="swap"><img src="up-and-down-arrow.png" /></button>
<button id="convert">CONVERT</button>
</div>
<p class="error">
ERROR : Accept only amount larger than zero, please try again.
</p>
<div class="pending"><div class="dot-elastic"></div></div>
<div class="result"></div>
<div class="popular-container">
<p class="popular">**Popular Currencies**</p>
<button class="popular-currency-button" data-currency="JPY">
HKD - JPY
</button>
<button class="popular-currency-button" data-currency="USD">
HKD - USD
</button>
<button class="popular-currency-button" data-currency="CNY">
HKD - CNY
</button>
<button class="popular-currency-button" data-currency="EUR">
HKD - EUR
</button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>