Skip to content

Commit 92128b4

Browse files
authored
Revise index.html for donation support and styling
Updated the HTML structure to include a donation section with cryptocurrency addresses.
1 parent 56db350 commit 92128b4

1 file changed

Lines changed: 29 additions & 3 deletions

File tree

index.html

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1-
<!doctype html>
2-
<html lang="ru"><head><meta charset="utf-8"><title>Site</title></head>
3-
<body><h1>Работает</h1></body></html>
1+
<!DOCTYPE html>
2+
<html lang="ru">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Поддержать проект</title>
6+
<style>
7+
body { font-family: sans-serif; text-align: center; padding: 50px; background: #f4f4f4; }
8+
.card { background: white; padding: 20px; border-radius: 10px; display: inline-block; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
9+
.crypto-address { background: #eee; padding: 10px; margin: 10px 0; word-break: break-all; font-family: monospace; }
10+
.btn { display: inline-block; padding: 10px 20px; background: #2ecc71; color: white; text-decoration: none; border-radius: 5px; }
11+
</style>
12+
</head>
13+
<body>
14+
<div class="card">
15+
<h1>Поддержать автора</h1>
16+
<p>Если вам нравится то, что я делаю, вы можете отправить донат:</p>
17+
18+
<a href="https://www.buymeacoffee.com/ВАШ_НИК" class="btn">Купить мне кофе ☕</a>
19+
20+
<hr>
21+
22+
<h3>Криптовалюта</h3>
23+
<p>BTC:</p>
24+
<div class="crypto-address">ВАШ_BTC_АДРЕС</div>
25+
<p>ETH / USDT (ERC-20):</p>
26+
<div class="crypto-address">ВАШ_ETH_АДРЕС</div>
27+
</div>
28+
</body>
29+
</html>

0 commit comments

Comments
 (0)