<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crypto Donation Box</title>
<style>
.donation-container {
max-width: 350px;
background: #1e293b;
color: #f8fafc;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
font-family: Arial, sans-serif;
text-align: center;
}
.donation-container h3 {
margin-top: 0;
color: #38bdf8;
}
.donation-button {
display: block;
width: 100%;
padding: 12px;
background-color: #0ea5e9;
color: white;
text-align: center;
text-decoration: none;
font-weight: bold;
border-radius: 6px;
transition: background-color 0.3s;
box-sizing: border-box;
border: none;
cursor: pointer;
}
.donation-button:hover {
background-color: #0284c7;
}
</style>
</head>
<body>
<div class="donation-container">
<h3>Support My Project</h3>
<p>Donate with your FaucetPay account using Bitcoin, Ethereum, or any supported micro-cryptocurrency.</p>
<!-- Replace 'YOUR_USERNAME' with your actual FaucetPay Username -->
<a href="https://faucetpay.io" class="donation-button" target="_blank">
Donate via FaucetPay
</a>
</div>
</body>
</html>
Support My Project
Donate with your FaucetPay account using Bitcoin, Ethereum, or any supported micro-cryptocurrency.
Donate via FaucetPay

