-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
42 lines (40 loc) · 1.42 KB
/
contact.html
File metadata and controls
42 lines (40 loc) · 1.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact QuantumMind AI</title>
<link rel="stylesheet" href="css/contact.css">
</head>
<body>
<header>
<img src="img/Logo.png" alt=" RALogo" class="ra-logo">
<nav>
<a href="index.html">Home</a>
<a href="features.html">Features</a>
<a href="demo.html">Demo</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<section id="contact-form">
<h2>Reach Out to AIMTY</h2>
<form id="contactForm" onsubmit="handleSubmit(event)">
<input type="text" placeholder="Name" required>
<input type="email" placeholder="Email" required>
<textarea placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
<p>Team: AIMTY at Hackathon 2025 | GitHub: <a href="https://github.com/quantummind-ai" target="_blank">quantummind-ai</a></p>
</section>
<footer>
<p>© 2025 AIMTY. "Your Mental Spacesuit."</p>
<div>
<a href="#license">License</a>
<a href="#privacy">Privacy Policy</a>
<a href="#terms">Terms of Service</a>
</div>
</footer>
<script src="js/contact.js"></script>
</body>
</html>