-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
96 lines (88 loc) · 4.53 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio - codernoel</title>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/footer.css">
<link rel="stylesheet" href="styles/header.css">
<!-- Font: Poppins, Linked from Google Fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
</head>
<body>
<header class="header">
<div class="logo-container">
<img class="logo" src="images/logo.png" alt="Logo">
</div>
<nav class="nav-window">
<ul class="nav-elements">
<li><a href="index.html" id="nav-home">Home</a></li>
<li><a href="about.html" id="nav-about">About</a></li>
<li><a href="portfolio.html" id="nav-portfolio">Portfolio</a></li>
<li><a href="contact.html" id="nav-contact">Contact</a></li>
</ul>
</nav>
<div class="hamburger-menu" id="hamburgerMenu">
<span></span>
<span></span>
<span></span>
</div>
</header>
<div class="mobile-nav" id="mobileNav">
<ul class="mobile-nav-elements">
<li><a href="index.html" id="nav-home-mobile">Home</a></li>
<li><a href="about.html" id="nav-about-mobile">About</a></li>
<li><a href="portfolio.html" id="nav-portfolio-mobile">Portfolio</a></li>
<li><a href="contact.html" id="nav-contact-mobile">Contact</a></li>
</ul>
</div>
<main class="contact">
<div class="contact-container">
<div class="contact-form">
<h2>Get in touch</h2>
<form id="contactForm" action="https://formspree.io/f/meojqeoq" method="POST">
<input type="email" id="email" name="email" placeholder="Email" required>
<input type="text" id="subject" name="subject" placeholder="Subject" required>
<textarea id="message" name="message" placeholder="Message" required></textarea>
<button type="submit">Send</button>
</form>
<div id="successMessage" class="success-message">Your message has been sent successfully!</div>
</div>
<div class="direct-links">
<h2>Direct Links</h2>
<a href="https://github.com/codernoel" target="_blank" class="social-link">Github</a>
<a href="https://linkedin.com/in/codernoel" target="_blank" class="social-link">Linkedin</a>
<a href="https://instagram.com/codernoel" target="_blank" class="social-link">Instagram</a>
<a href="https://twitter.com/codernoel_" target="_blank" class="social-link">Twitter</a>
<a href="mailto:[email protected]" class="social-link">Email</a>
</div>
</div>
</main>
<footer>
<div class="footer-left">
<h3>Connect</h3>
<div class="social-links">
<a href="https://github.com/codernoel" target="_blank">
<img src="images/footer/github.svg" alt="Github Link">
</a>
<a href="https://linkedin.com/in/codernoel" target="_blank">
<img src="images/footer/linkedin.png" alt="LinkedIn Link">
</a>
<a href="https://instagram.com/codernoel" target="_blank">
<img src="images/footer/instagram.svg" alt="Instagram Link">
</a>
</div>
</div>
<div class="footer-right">
<h6 class="developed">Developed for the DECO1400 Project at UQ</h6>
<p>© 2024 Codernoel. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>