-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththankyou.html
executable file
·106 lines (63 loc) · 1.61 KB
/
thankyou.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
<HTML>
<HEAD>
<meta charset="UTF-8">
<meta name="description" content="Personal website for my programming, computing and finance hobbies">
<meta name="keywords" content="karl, hunter, go, programming, computing, finance, personal, hobby, defiant-fg, defiant">
<meta name="author" content="Karl Hunter">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The World of Karl Hunter</title>
<style>
body {
background-color: #ACE8FF;
font-family: Helvetica;
font-size: 20px;
}
#box {
background-color: white;
border: 3px solid darkgrey;
margin: 1em;
padding: 2em;
border: 0.15em solid #6E7172;
border-radius: 25px;
min-width: 550px;
}
#titletext {
font-weight: bold;
font-size: 35px;
}
.textgrey {
color: #6E7172;
font-weight: bold;
}
.bodyheader {
font-weight: bold;
color: #100ED5;
}
.copyright {
color: darkgrey;
padding-top: 0.1em;
font-size: 15px;
}
</style>
</HEAD>
<BODY>
<div id = "box">
<p id = "titletext">Thank <span class = "textgrey">You</span></p>
<p>
A true heart-felt thank you for your kind and generous donation.</p>
<p>
You are helping support me with my passions and allowing me to development my open source projects.<br>
Your help means I can continue to contribute and develop tools like DEFIANT-FG.<br>
</p>
Again, thank you. <br>
</p>
<span class = "bodyheader">Links</span>
<ul>
<li><a href = "index.html" title = "Back home">Back home</a></li>
</ul>
</p>
<br>
<p class = "copyright">© Karl Hunter 2023</p>
</div>
</BODY>
</HTML>