Skip to content

Commit

Permalink
Update contact.html
Browse files Browse the repository at this point in the history
  • Loading branch information
burnt-exe authored Mar 17, 2024
1 parent ed90931 commit f5b3c29
Showing 1 changed file with 36 additions and 34 deletions.
70 changes: 36 additions & 34 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,43 +4,45 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Raydo Matthee</title>
<link rel="stylesheet" href="styles.css">
<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>
<header>
<h1>Contact Raydo Matthee</h1>
<body class="bg-gray-900 text-white">

<header class="text-center py-10">
<!-- Logo and navigation menu can be added here -->
<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>

<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="education.html">Education</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>

<main>
<section class="contact-info">
<h2>Get in Touch</h2>
<p>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>

<ul>
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Twitter: <a href="https://twitter.com/@skunkworksza">@skunkworksza</a></li>
<li>GitHub: <a href="https://github.com/skunkworks-pty-ltd">skunkworks-pty-ltd</a></li>
<li>LinkedIn: <a href="https://www.linkedin.com/in/raydo-matthee">LinkedIn Profile</a></li>
<li>Website: <a href="https://www.skunkworks.africa">www.skunkworks.africa</a></li>

<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>

<ul class="list-disc space-y-2 pl-5">
<li>Email: <a href="mailto:[email protected]" class="hover:text-blue-400">[email protected]</a></li>
<li>Twitter: <a href="https://twitter.com/skunkworksza" class="hover:text-blue-400">@skunkworksza</a></li>
<li>GitHub: <a href="https://github.com/skunkworks-pty-ltd" class="hover:text-blue-400">skunkworks-pty-ltd</a></li>
<li>LinkedIn: <a href="https://www.linkedin.com/in/linkedin-profile" class="hover:text-blue-400">LinkedIn Profile</a></li>
<li>Website: <a href="https://www.skunkworks.africa" class="hover:text-blue-400">www.skunkworks.africa</a></li>
</ul>
</section>
</main>

<footer>
<p>Connect with me on <a href="https://github.com/burnt-exe">GitHub @burnt-exe</a></p>
</div>
</section>

<footer class="text-center py-6 border-t border-gray-800 mt-10">
<p>&copy; 2024 burnt.exe. All rights reserved.</p>
<p>Powered by Skunkworks creativity and innovation.</p>
</footer>

<script src="script.js"></script>

</body>
</html>

0 comments on commit f5b3c29

Please sign in to comment.