-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (63 loc) · 2.45 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!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" />
<meta
name="description"
content="Neumorphic Currency Exchange Rate Converter Progressive Web Application"
/>
<meta name="theme-color" content="#3633f3" />
<link rel="apple-touch-icon" href="/img/logo.png" />
<link rel="shortcut icon" href="/img/logo.png" type="image/x-icon" />
<link rel="manifest" href="/manifest.json" />
<link
rel="stylesheet"
href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p"
crossorigin="anonymous"
/>
<!-- Favicons -->
<link rel="icon" sizes="16x16" href="/img/logo-16.svg" />
<link rel="icon" sizes="32x32" href="/img//logo-32.svg" />
<link rel="icon" sizes="48x48" href="/img//logo-48.svg" />
<link rel="icon" sizes="152x152" href="/img/logo-152.svg" />
<link rel="icon" sizes="192x192" href="/img/logo-192.svg" />
<link rel="stylesheet" href="./css/style.css" />
<title>Neumorphic Currency Converter PWA</title>
</head>
<body>
<div class="container">
<div class="converter-app">
<form class="currency-converter">
<h1 class="title">Currency Converter</h1>
<div class="exchange-rate">
<span class="rate-heading">Exchange Rate</span>
<h2 class="rate-value"></h2>
</div>
<label for="amount">Amount</label>
<input type="number" name="amount" id="amount" min="0" />
<div class="choose-currency">
<div class="select-field">
<label for="from">From</label>
<select name="currencies" id="from" autocomplete="on">
<!-- <option value="NGN">NGN</option>-->
</select>
</div>
<i id="swap-btn" class="fas fa-exchange-alt"></i>
<div class="select-field">
<label for="to">To</label>
<select name="currencies" id="to" autocomplete="on">
<!-- <option value="USD">USD</option>-->
</select>
</div>
</div>
<button id="convert-btn">Convert</button>
</form>
</div>
<div class="dark-overlay"></div>
</div>
<script src="./js/main.js"></script>
</body>
</html>