-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
118 lines (108 loc) · 4.98 KB
/
contact.html
File metadata and controls
118 lines (108 loc) · 4.98 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Get in touch with the NovaRift team. We'd love to hear from you!">
<title>Contact - NovaRift</title>
<link rel="icon" type="image/x-icon" href="assets/icons/favicon.ico">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="css/contact.css">
<link rel="stylesheet" href="css/footer.css">
</head>
<body>
<div id="loader">
<div class="spinner"></div>
</div>
<header>
<nav>
<a href="index.html" class="logo">NovaRift</a>
<div class="nav-wrapper">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="agents.html">Agents</a></li>
<li><a href="maps.html">Maps</a></li>
<li><a href="weapons.html">Weapons</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
<button class="theme-toggle" aria-label="Toggle theme">☀️</button>
<button class="hamburger" aria-label="Toggle menu" aria-expanded="false">
<span></span>
<span></span>
<span></span>
</button>
</div>
</nav>
</header>
<main>
<section class="contact-container">
<h1>Contact Us</h1>
<p class="contact-intro">Have a question, suggestion, or just want to say hello? We'd love to hear from you. Fill out the form below and we'll get back to you as soon as possible.</p>
<form id="contact-form" class="contact-form" novalidate>
<div class="form-group">
<label for="name">Name *</label>
<input type="text" id="name" name="name" required aria-required="true" aria-describedby="name-error">
<span id="name-error" class="error-message" role="alert"></span>
</div>
<div class="form-group">
<label for="email">Email *</label>
<input type="email" id="email" name="email" required aria-required="true" aria-describedby="email-error">
<span id="email-error" class="error-message" role="alert"></span>
</div>
<div class="form-group">
<label for="message">Message *</label>
<textarea id="message" name="message" required aria-required="true" aria-describedby="message-error" rows="6"></textarea>
<span id="message-error" class="error-message" role="alert"></span>
</div>
<!-- Honeypot field (hidden from users) -->
<div class="form-group honeypot">
<label for="website">Website (leave blank)</label>
<input type="text" id="website" name="website" tabindex="-1" autocomplete="off">
</div>
<button type="submit" class="btn form-submit">Send Message</button>
</form>
</section>
</main>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>NovaRift</h3>
<p>A tactical universe of heroes, tech, and chaos. Master your abilities and control the battlefield.</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul class="footer-links">
<li><a href="agents.html">Agents</a></li>
<li><a href="maps.html">Maps</a></li>
<li><a href="weapons.html">Weapons</a></li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
</div>
<div class="footer-section">
<h3>About</h3>
<ul class="footer-links">
<li><a href="contact.html">Contact</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Connect</h3>
<div class="footer-social">
<a href="#" aria-label="Twitter">🐦</a>
<a href="#" aria-label="Discord">💬</a>
<a href="#" aria-label="YouTube">📺</a>
<a href="#" aria-label="Twitch">🎮</a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 NovaRift. All rights reserved.</p>
</div>
</footer>
<script src="js/main.js"></script>
<script src="js/form-validation.js"></script>
</body>
</html>