-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 924 Bytes
/
index.html
File metadata and controls
44 lines (39 loc) · 924 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Currency Convertor</title>
<style>
body {
background: #f8f9fa;
}
.converter {
max-width: 500px;
margin: 50px auto;
padding: 30px;
background: white;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.footer {
text-align: center;
padding: 1rem;
background: #222;
color: #aaa;
font-size: 0.95rem;
margin-top: 20px;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<div id="root" class="container"></div>
<footer class="footer">
This project uses the Currency Conversion API from RapidAPI but is not endorsed by the provider.
</footer>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>