-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
114 lines (101 loc) · 5.28 KB
/
contact.html
File metadata and controls
114 lines (101 loc) · 5.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="css/essentials/footer.css">
<link rel="stylesheet" href="css/essentials/nav.css">
<link rel="stylesheet" href="css/essentials/utility.css">
<link rel="stylesheet" href="css/contact/contact.css"> <link rel="icon" class="favicon" href="images/logos/logo1.png">
</head>
<body>
<!-- Header with Navigation -->
<header>
<nav class="navlinks">
<ul>
<li><a href="index.html"><img src="images/logos/logo.png" alt="logo"></a></li>
<li><a href="home.html">HOME</a></li>
<li><a href="hub.html">HUB</a></li>
<li><a href="events.html">EVENTS</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</nav>
</header>
<main>
<section class="contact">
<!-- Contact Info Section -->
<section class="contact-info">
<h2>Contact Us</h2>
<p>If you have any questions or want to connect, feel free to reach out to us using the form below or follow us on our social media.</p>
</section>
<!-- Contact Form Section -->
<section class="contact-form">
<h2>Send Us a Message</h2>
<form id="contact-form" action="#" method="POST">
<input type="text" id="name" name="name" placeholder="Your Name" required>
<input type="email" id="email" name="email" placeholder="Your Email" required>
<textarea id="message" name="message" placeholder="Your Message" required></textarea>
<button type="submit" class="submit-btn">Send Message</button>
</form>
</section>
<section class="location">
<h2>Our Location</h2>
<div class="map-container">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3783.622196937789!2d73.93385107428664!3d18.50076466978077!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bc2c20298a0ef3f%3A0xee0a510558704aed!2sRamanand%20Complex!5e0!3m2!1sen!2sin!4v1733691109788!5m2!1sen!2sin" width="600" height="550" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</section>
</section>
<section class="faq">
<h2>Frequently Asked Questions</h2>
<div class="faq faq-container"></div>
</section>
</main>
<!-- Footer Section -->
<footer>
<div class="footer-content">
<div class="footer-left">
<div class="footer-topic">About Us</div>
<p>JDM Community is the largest drift community and car domestic market. Our goal is to spread JDM
culture globally, in collaboration with Mitsubishi, Toyota, Suzuki, and more.</p>
<div class="footer-topic">Contact Us</div>
<p><i class="fas fa-phone-alt"></i><a href="tel:+917888117903">+91 7888117903</a></p>
<p><i class="fas fa-envelope"></i><a href="mailto:devjasani79@gmail.com">devjasani79@gmail.com</a></p>
</div>
<div class="footer-middle">
<div class="footer-topic">Quick Links</div>
<ul>
<li><a href="hub.html#trivia">JDM Trivia</a></li>
<li><a href="hub.html#merchandise">JDM Merchandise</a></li>
<li><a href="hub.html#locators">JDM Locators</a></li>
<li><a href="hub.html#events">JDM Events</a></li>
<li><a href="hub.html#history">JDM History</a></li>
<li><a href="hub.html#glossary">JDM Glossary</a></li>
<li><a href="hub.html#membership">GET MEMBERSHIP</a></li>
</ul>
</div>
<div class="footer-right">
<div class="footer-topic">Subscribe to Us</div>
<form id="subscribeForm" onsubmit="submitForm(); return false;">
<input type="email" name="email" placeholder="Enter your email address" required>
<input type="submit" value="Subscribe">
</form>
<div class="footer-social">
<a href="https://www.facebook.com" target="_blank" class="social-icon"><img
src="images/logos/facebook.png" alt="Facebook"></a>
<a href="https://www.instagram.com/dev_jasani/" target="_blank" class="social-icon"><img
src="images/logos/instagram.png" alt="Instagram"></a>
<a href="https://wa.me/+917888117903" target="_blank" class="social-icon"><img
src="images/logos/whatsapp.png" alt="WhatsApp"></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 <a href="#">JDM WEB</a>. All rights reserved.</p>
</div>
</footer>
<script src="js/footer.js"></script>
<script src="js/contact/contact.js"></script>
</body>
</html>