File tree 1 file changed +24
-5
lines changed
1 file changed +24
-5
lines changed Original file line number Diff line number Diff line change 1
-
2
1
<!DOCTYPE html>
3
2
< html lang ="en ">
4
3
< head >
5
4
< meta charset ="UTF-8 ">
6
5
< meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
7
6
< link href ="
https://cdn.jsdelivr.net/npm/[email protected] /dist/css/bootstrap.min.css "
rel ="
stylesheet "
integrity ="
sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH "
crossorigin ="
anonymous "
>
8
7
< 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 >
9
24
</ head >
10
25
< body >
11
26
< div class ="container mt-5 ">
@@ -21,16 +36,20 @@ <h1>Legacy Bitcoin Address Generator</h1>
21
36
</ div >
22
37
23
38
< div >
24
-
25
39
Paste in this Public key if you just want to test the generator
26
40
</ div >
27
41
< div >
28
- < b >
29
- 0250863ad64a87ae8a2fe83c1af1a8403cb53f53e486d8511dad8a04887e5b2352
30
- </ b >
42
+ < b >
43
+ 0250863ad64a87ae8a2fe83c1af1a8403cb53f53e486d8511dad8a04887e5b2352
44
+ </ b >
31
45
</ div >
32
46
</ div >
33
47
48
+ < footer >
49
+ © 2024 Bitcoin Address Generator. All rights reserved.
50
+ </ footer >
51
+
34
52
< script type ="module " src ="./index.js "> </ script >
35
53
</ body >
36
54
</ html >
55
+
You can’t perform that action at this time.
0 commit comments