-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBTCwallet.html
More file actions
42 lines (38 loc) · 1.37 KB
/
BTCwallet.html
File metadata and controls
42 lines (38 loc) · 1.37 KB
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BTC Wallet</title>
<!--==================== UNICONS ====================-->
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v3.0.6/css/line.css">
<!--==================== CSS ====================-->
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="icon" type="image/x-icon" href="assets/img/1552191.png">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4TVCL667ZF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-4TVCL667ZF');
</script>
</head>
<body>
<center>
<h1>
<b>
Bitcoin Wallet Address<br><br>3CWpmCGqEYXvxRqF31B36FHZ7ovyCSch1v
</b>
</h1>
<button class="card__button"
onclick="window.location.href = 'index.html';">
Back Home
</button>
<button class="card__button"
onclick="window.location.href = 'donate.html';">
Back To Donate
</button>
</center>
</body>
</html>