-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
56 lines (52 loc) · 2.94 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Raydo Matthee</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body class="bg-gray-900 text-white">
<header class="text-center py-10">
<!-- Logo and navigation menu -->
<nav class="mt-6">
<ul class="flex justify-center space-x-4">
<li><a href="index.html" class="hover:text-blue-400">Home</a></li>
<li><a href="about.html" class="hover:text-blue-400">About</a></li>
<li><a href="experience.html" class="hover:text-blue-400">Experience</a></li>
<li><a href="education.html" class="hover:text-blue-400">Education</a></li>
<li><a href="skills.html" class="hover:text-blue-400">Skills</a></li>
<li><a href="contact.html" class="hover:text-blue-400">Contact</a></li>
</ul>
</nav>
</header>
<section id="contact" class="py-10">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold mb-6">Get in Touch - Raydo Matthee</h2>
<p class="mb-4">I'm open to discussing new opportunities, collaborations, or just having a chat about technology and education. Feel free to reach out through any of the platforms below.</p>
<div class="flex justify-center items-center space-x-6">
<a href="mailto:[email protected]">
<img src="https://cdn-icons-png.flaticon.com/512/561/561127.png" alt="Email Icon" class="h-16 w-16" style="filter: brightness(0) invert(1);">
</a>
<a href="https://twitter.com/skunkworksza">
<img src="https://cdn-icons-png.flaticon.com/512/733/733579.png" alt="Twitter Icon" class="h-16 w-16">
</a>
<a href="https://github.com/skunkworks-pty-ltd">
<img src="https://cdn-icons-png.flaticon.com/512/733/733553.png" alt="GitHub Icon" class="h-16 w-16">
</a>
<a href="https://www.linkedin.com/in/linkedin-profile">
<img src="https://cdn-icons-png.flaticon.com/512/3536/3536505.png" alt="LinkedIn Icon" class="h-16 w-16">
</a>
<a href="https://www.skunkworks.africa">
<img src="https://raw.githubusercontent.com/burnt-exe/burnt-exe.github.io/main/img/SKUNKWORKS%20FAV.png" alt="Website Icon" class="h-16 w-16">
</a>
</div>
</div>
</section>
<footer class="text-center py-6 border-t border-gray-800 mt-10">
<p>© 2024 burnt.exe. All rights reserved.</p>
<p>Powered by Skunkworks creativity and innovation.</p>
</footer>
</body>
</html>