-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path500.html
69 lines (64 loc) · 2.69 KB
/
500.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.">
<title>500 Not Found | My Portfolio</title>
<link rel="stylesheet" href="resources/styles/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="icon" type="image/x-icon" href="resources/images/favicon.png">
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-20RSSNLP7K"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-20RSSNLP7K');
</script>
<body>
<div class="container-404">
<h1>500</h1>
<p>Internal Server Error.</p>
<a href="index.html">Back to Home</a>
</div>
<div id="cookieConsentContainer" style="display: none;">
<p>This website uses cookies for Google Analytics. By using our website, you consent to our use of cookies.</p>
<button id="acceptCookieConsent">I Accept</button>
</div>
</body>
<footer>
<div class="social-links">
<!-- Update these with your actual social media and contact links -->
<a href="https://twitter.com/KoltzowLJ" class="social-link">
<i class="fab fa-twitter"></i> Twitter
</a>
<a href="https://www.facebook.com/louwrens.koltzow.77" class="social-link">
<i class="fab fa-facebook"></i> Facebook
</a>
<a href="https://www.instagram.com/louwrens_koltzow" class="social-link">
<i class="fab fa-instagram"></i> Instagram
</a>
<a href="https://wa.me/+27796966537" class="social-link">
<i class="fab fa-whatsapp"></i> WhatsApp
</a>
<a href="https://t.me/KoltzowLJ" class="social-link">
<i class="fab fa-telegram"></i> Telegram
</a>
<a href="mailto:louwrens@thesimpleprogrammer.com" class="social-link">
<i class="fas fa-envelope"></i> Email
</a>
<a href="https://github.com/KoltzowLJ" class="social-link">
<i class="fab fa-github"></i> Github
</a>
</div>
<div class="legal-links">
<a href="privacy-policy.html">Privacy Policy</a>
<span>|</span>
<a href="terms-of-service.html">Terms of Service</a>
</div>
<p>© 2024 My Portfolio</p>
</footer>
<script src="resources/scripts/script.js"></script>
</html>