-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
47 lines (42 loc) · 1.69 KB
/
contact.html
File metadata and controls
47 lines (42 loc) · 1.69 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
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link href="../assets/css/style.css" rel="stylesheet">
<link href="../assets/css/mystyle.css" rel="stylesheet">
</head>
<body>
<div id="title-bar-container"></div>
<script>
// Fetch and append the title bar content dynamically
const titleBarContainer = document.getElementById('title-bar-container');
fetch('../TitleBar.html')
.then(response => response.text())
.then(html => {
titleBarContainer.innerHTML = html;
});
</script>
<div class="content">
<h1 class="contentTitle">Contact me</h1>
<p>You can contact me by the following means:
<ul>
<li> <a href="mailto:Laggrif@outlook.com">Email</a> </li>
<li> <a href="https://discord.gg/EyP5MbhGdH">Discord server</a> </li>
<li> Open an issue on one of my <a href="/projects.html">projects</a> </li>
</ul>
</p>
</div>
<div class="content">
<h1 class="contentTitle">Donate</h1>
<p>If you like my work and want to support me, feel free to buy me a coffee (or more) with the button below.</p>
<div>
<form action="https://www.paypal.com/donate" method="post" target="_top">
<input type="hidden" name="hosted_button_id" value="QU79XQ3CGUP74" />
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" title="PayPal - The safer, easier way to pay online!" alt="Donate with PayPal button" />
<img alt="" border="0" src="https://www.paypal.com/en_CH/i/scr/pixel.gif" width="1" height="1" />
</form>
</div>
</div>
</body>
</html>