Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
RGGH authored Nov 4, 2024
1 parent 9248702 commit c1dfca5
Showing 1 changed file with 24 additions and 5 deletions.
29 changes: 24 additions & 5 deletions web/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,26 @@

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<title>Bitcoin Address Generator</title>
<style>
body {
background-color: purple; /* Set background color to purple */
color: white; /* Change text color to white for better contrast */
}
footer {
background-color: grey; /* Set footer background color to grey */
color: white; /* Change footer text color to white */
padding: 10px 0; /* Add some padding to the footer */
text-align: center; /* Center align footer text */
position: fixed; /* Fix footer at the bottom */
left: 0;
bottom: 0;
width: 100%; /* Full width */
}
</style>
</head>
<body>
<div class="container mt-5">
Expand All @@ -21,16 +36,20 @@ <h1>Legacy Bitcoin Address Generator</h1>
</div>

<div>

Paste in this Public key if you just want to test the generator
</div>
<div>
<b>
0250863ad64a87ae8a2fe83c1af1a8403cb53f53e486d8511dad8a04887e5b2352
</b>
<b>
0250863ad64a87ae8a2fe83c1af1a8403cb53f53e486d8511dad8a04887e5b2352
</b>
</div>
</div>

<footer>
&copy; 2024 Bitcoin Address Generator. All rights reserved.
</footer>

<script type="module" src="./index.js"></script>
</body>
</html>

0 comments on commit c1dfca5

Please sign in to comment.