Skip to content

Commit c1dfca5

Browse files
authored
Update index.html
1 parent 9248702 commit c1dfca5

File tree

1 file changed

+24
-5
lines changed

1 file changed

+24
-5
lines changed

web/index.html

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
1-
21
<!DOCTYPE html>
32
<html lang="en">
43
<head>
54
<meta charset="UTF-8">
65
<meta name="viewport" content="width=device-width, initial-scale=1.0">
76
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
87
<title>Bitcoin Address Generator</title>
8+
<style>
9+
body {
10+
background-color: purple; /* Set background color to purple */
11+
color: white; /* Change text color to white for better contrast */
12+
}
13+
footer {
14+
background-color: grey; /* Set footer background color to grey */
15+
color: white; /* Change footer text color to white */
16+
padding: 10px 0; /* Add some padding to the footer */
17+
text-align: center; /* Center align footer text */
18+
position: fixed; /* Fix footer at the bottom */
19+
left: 0;
20+
bottom: 0;
21+
width: 100%; /* Full width */
22+
}
23+
</style>
924
</head>
1025
<body>
1126
<div class="container mt-5">
@@ -21,16 +36,20 @@ <h1>Legacy Bitcoin Address Generator</h1>
2136
</div>
2237

2338
<div>
24-
2539
Paste in this Public key if you just want to test the generator
2640
</div>
2741
<div>
28-
<b>
29-
0250863ad64a87ae8a2fe83c1af1a8403cb53f53e486d8511dad8a04887e5b2352
30-
</b>
42+
<b>
43+
0250863ad64a87ae8a2fe83c1af1a8403cb53f53e486d8511dad8a04887e5b2352
44+
</b>
3145
</div>
3246
</div>
3347

48+
<footer>
49+
&copy; 2024 Bitcoin Address Generator. All rights reserved.
50+
</footer>
51+
3452
<script type="module" src="./index.js"></script>
3553
</body>
3654
</html>
55+

0 commit comments

Comments
 (0)