-
Notifications
You must be signed in to change notification settings - Fork 0
/
donate.html
108 lines (108 loc) · 4.05 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
<!DOCTYPE html>
<html>
<head>
<!-- Tell browser that this site is responsive -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Cache control for developing the site on gh-pages -->
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<!-- CSS files to load -->
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
<link href="./assets/style.css?v=1" type="text/css" rel="stylesheet" />
<title>Donate | CSF</title>
<script src="./assets/notification.js"></script>
<script>
function copyT(text) {
var copyFrom = document.createElement("textarea");
copyFrom.textContent = text;
var body = document.body;
body.appendChild(copyFrom);
copyFrom.select();
document.execCommand('copy');
body.removeChild(copyFrom);
}
function copied(el) {
el.className = "clicked";
el.parentNode.className += " clicked";
}
function select(el) {
window.getSelection().selectAllChildren(el);
}
</script>
</head>
<body>
<!-- Used for first section background -->
<main>
<div class="content">
<div class="nav">
<a href="./">
<button class="special" style="font-size: 25px;">
Csf<span class="color-blue">30816</span>
</button>
</a>
<a href="./about.html">
<button style="font-size: 25px;">
About
</button>
</a>
<a href="./products.html">
<button style="font-size: 25px;">
Products
</button>
</a>
</div>
<div class="center">
<div class="box">
<h2>Don<span class="color-blue">ate</span></h2>
<p>To keep me and my products alive please consider donating.</p>
</div>
</div>
</div>
</main>
<div class="section">
<div class="inner" id="notif">
<div class="notif">
<b>Alert: </b>Please consider donating! <a href="donate.html">Donate</a> is the place to go.
</div>
</div>
<div class="inner">
<div class="item">
<h2>Donation</h2>
<p>I accept donations of any amount as long as they are through Bitcoin or Litecoin.
I use the donations to support my ever-growing projects and my personal site (this site).
Once I have enough money from donations I will buy my own domain instead of using a free Github sub-domain.
You can be sure that <b>none</b> of this money goes into liqour, drugs, or gambling.
It only goes to making your experience with my products better!</p>
</div>
<div class="item">
<h2>How?</h2>
<p>
You can donate using the cryptocurrency addresses below.
If your cryptocurrency type is not listed just ask and I can add it.
Minning fees may apply depending on your provider and the price can vary.
</p>
</div>
<div class="item">
<h2>Refunds</h2>
<p>
I just want to be clear, there are <b>no</b> refunds!
This is a donation not a store!
I have been asked about this and I really want to be clear.
</p>
</div>
<br>
<div class="copy">
BTC Address: <span onclick="select(this)">18Lvh4nEs5EDfNvhD44WZ3nHAjvRbDajaq</span>
<button title="Copy!" onclick="copyT('18Lvh4nEs5EDfNvhD44WZ3nHAjvRbDajaq');copied(this)"></button>
</div>
<div class="copy">
LTC Address: <span onclick="select(this)">Lhw2fHXoknDbDsGyNsfBeAxLhP9JDdHmmu</span>
<button title="Copy!" onclick="copyT('Lhw2fHXoknDbDsGyNsfBeAxLhP9JDdHmmu');copied(this)"></button>
</div>
</div>
</div>
</body>
</html>