-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdonate.html
148 lines (136 loc) · 4.14 KB
/
donate.html
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Free VPS | Donate</title>
<meta content='Free VPS - Donate' name='twitter:title'>
<meta content='Free VPS - Donate' property='og:title'>
<meta content='Donate me to continue VPS :)' property='og:description'>
<meta content='Donate me to continue VPS :)' name='twitter:description'>
<style>
body {
background-color: #f0f0f0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: 'Roboto', sans-serif;
}
h1 {
font-size: 36px;
color: #333;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
margin-bottom: 30px;
}
.crypto-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin: 20px;
}
.crypto-item {
display: flex;
flex-direction: column;
align-items: center;
margin: 10px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
max-width: 200px;
}
.crypto-item img {
width: 60px;
height: 60px;
margin-bottom: 10px;
}
.crypto-item p {
font-size: 14px;
text-align: center;
margin: 0;
}
.crypto-address {
font-family: monospace;
font-size: 14px;
margin-top: 10px;
word-break: break-all;
}
.back-btn {
display: inline-block;
padding: 10px 20px;
font-size: 18px;
text-align: center;
background-color: #007BFF;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
margin-top: 20px;
}
.back-btn:hover {
background-color: #0056b3;
}
.social-icon {
width: 40px;
height: 40px;
margin-left: 10px;
cursor: pointer;
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZD8Y83407P"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-ZD8Y83407P');
</script>
</head>
<body>
<iframe data-aa='2302374' src='//ad.a-ads.com/2302374?size=728x90' style='width:728px; height:90px; border:0px; padding:0; overflow:hidden; background-color: transparent;'></iframe>
<h1>Crypto Donations</h1>
<div class="crypto-container">
<div class="crypto-item">
<img src="images/bitcoin-btc-logo.png" alt="Bitcoin">
<p>Bitcoin (BTC)</p>
<p class="crypto-address">bc1qwucw0pay4metrt4s50w8pclcwedxlhfryt84h9</p>
</div>
<div class="crypto-item">
<img src="images/matic-logo.webp" alt="Bitcoin">
<p>Polygon (MATIC)</p>
<p class="crypto-address">0x7fE962dDF195e74af4f5ADE2a75e4cEEDB837614</p>
</div>
<div class="crypto-item">
<img src="images/litecoin-ltc-logo.png" alt="Bitcoin">
<p>Litecoin (LTC)</p>
<p class="crypto-address">ltc1qyw3afej0w0fsv8xzxe3jn72xgywr2ld297c2qw</p>
</div>
<div class="crypto-item">
<img src="images/dogecoin-doge-logo.png" alt="Dogecoin">
<p>Dogecoin (DOGE)</p>
<p class="crypto-address">DMF2u5ck1qde375U7ozHLqQADEEcCtUHYr</p>
</div>
<!-- Add more crypto donation options here -->
</div>
<button onclick="goBack()" class="back-btn">Back</button>
<p></p>
<iframe data-aa='2302374' src='//ad.a-ads.com/2302374?size=728x90' style='width:728px; height:90px; border:0px; padding:0; overflow:hidden; background-color: transparent;'></iframe>
<!-- Social Media Icons -->
<div class="social-icons">
<p></p>
<a href="https://github.com/SLXUniverse/free-vps" target="_blank"><img src="images/Octicons-mark-github.svg.png" alt="GitHub" class="social-icon"></a>
<!-- Add more social media icons as needed -->
</div>
<script>
function goBack() {
window.history.back();
}
</script>
</body>
</html>