This repository was archived by the owner on Feb 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
61 lines (56 loc) · 2.69 KB
/
contact.html
File metadata and controls
61 lines (56 loc) · 2.69 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Neocle - Contact</title>
<link rel="icon" href="https://neocle.me/uploads/favicon.png" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/contact.css" />
<script src="js/loading-animation.js"></script>
<script src="https://cdn.emailjs.com/dist/email.min.js"></script>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<script src="js/email-init.js"></script>
</head>
<body>
<div class="wrapper">
<main class="container">
<section class="header">
<h1 class="main-title">Get In Touch</h1>
<p class="subtitle">Let's connect or collaborate on something cool!</p>
</section>
<div class="navbar animate-on-load">
<a href="/"><i class="navbar-icons fa-solid fa-house"></i>Home</a>
<a href="/about"><i class="navbar-icons fa-solid fa-address-card"></i>About</a>
<a href="/projects"><i class="navbar-icons fa-solid fa-diagram-project"></i>Projects</a>
<a href="/contact"><i class="navbar-icons fa-solid fa-message"></i>Contact</a>
<a href="#"><i class="navbar-icons fa-solid fa-question"></i>Soon...</a>
</div>
<form id="contact-form">
<input type="text" name="name" placeholder="Your Name" required />
<input type="email" name="email" placeholder="Your Email" required />
<textarea name="message" rows="5" placeholder="Your Message" required></textarea>
<div class="g-recaptcha" data-sitekey="6LcwwhgrAAAAACDgOtDeqMUJ9WeUQg_3ZUnPr40c"></div>
<button type="submit">Send Message</button>
</form>
<div class="contact-blocks" style="margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem;">
<a href="https://discordapp.com/users/515958203838627856/" target="_blank" class="contact-block">
<i class="fab fa-discord"></i>
<span>@neocle</span>
</a>
<a href="https://www.instagram.com/neocle_/" target="_blank" class="contact-block">
<i class="fab fa-instagram"></i>
<span>@neocle_</span>
</a>
</div>
</main>
</div>
<footer class="footer">
<p>© 2025 Neocle. All rights reserved.</p>
</footer>
<script src="js/email-submit.js"></script>
<script src="js/navbar-highlight.js"></script>
</body>
</html>