-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
76 lines (70 loc) · 3.13 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Thelogicmatrix</title>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="../assets/sitefav32.png" type="image/png" sizes="32x32">
<link rel="icon" href="../assets/sitefav16.png" type="image/png" sizes="16x16">
</head>
<body>
<nav class="navigation">
<div class="nav-left">
<a href="../index.html" class="nav-link">
<img src="../assets/sitelogo.png" alt="Site Logo" class="site-logo">
</a>
<a href="../index.html" class="nav-link">
<span class="site-name">Thelogicmatrix</span>
</a>
</div>
<div class="nav-right">
<ul class="desktop-nav">
<li><a href="../index.html">Home</a></li> <!-- Added ../ to go to the root directory -->
<li><a href="../layering-realities.html" class="active">Layering Realities</a></li> <!-- Added ../ to go to the root directory -->
<li><a href="../about.html">About</a></li>
<li><a href="../contact.html">Contact</a></li>
</ul>
<!-- Mobile Menu Icon (Hamburger) - Now included directly as SVG -->
<div class="mobile-menu-icon" onclick="toggleMobileMenu()">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" class="h-6 w-6">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</div>
</div>
</nav>
<!-- Mobile Menu Dropdown -->
<div class="mobile-dropdown" id="mobileMenu">
<ul>
<li><a href="../index.html">Home</a></li>
<li><a href="../layering-realities.html" class="active">Layering Realities</a></li>
<li><a href="../about.html">About</a></li>
<li><a href="../contact.html">Contact</a></li>
</ul>
</div>
<header class="hero text-center">
<h1>Contact Me</h1>
</header>
<main>
<section id="contact">
<h2>Get in Touch</h2>
<p>If you have any questions or wish to commission work, feel free to reach out to me. I'd love to hear from you!</p>
<h3>Email</h3>
<p>You can email me directly at <a href="mailto:[email protected]">[email protected]</a>.</p>
<h3>Social Media</h3>
<p>You can check out my work on <a href="https://www.artstation.com/thelogicmatrix" target="_blank">ArtStation</a>.</p>
</section>
</main>
<footer>
<p>© 2025 Nathan Wong. All rights reserved.</p>
</footer>
<script>
// Function to toggle the mobile menu
function toggleMobileMenu() {
const mobileMenu = document.getElementById("mobileMenu");
mobileMenu.classList.toggle("show");
}
</script>
</body>
</html>