-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.html
More file actions
206 lines (181 loc) · 7.83 KB
/
events.html
File metadata and controls
206 lines (181 loc) · 7.83 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HUB FOR ALL</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/hub/events.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>
<!-- Hero Section -->
<section class="events-hero">
<video class="hero-video" autoplay muted loop>
<source src="images/services/events/jdmshowcase.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="hero-overlay"></div>
<div class="hero-content">
<h1>Unite Through Events</h1>
<p>Explore thrilling experiences and exclusive gatherings for JDM enthusiasts. Connect, share, and celebrate your passion!</p>
<a href="#ourevents" class="cta-button">Explore Events</a>
</div>
</section>
<!-- upcoming events -->
<section class="featured-events">
<div class="section-header" id="ourevents">
<h2>Upcoming Events!</h2>
</div>
<div class="slider-container">
<div class="event-card" data-title="Pune Drift Show" data-date="25th December, 2024">
<img src="images/services/events/pune1.png" alt="Pune Drift Show">
<h3>PDS Ft. TAPASWI RACING</h3>
<p>Date: 25th December, 2024</p>
<button class="view-more">View More</button>
</div>
<div class="event-card" data-title="Mumbai Burnout" data-date="1st January, 2025">
<img src="images/services/events/mumbai1.PNG" alt="Mumbai Speed Meet">
<h3>Mumbai BURNOUT & HELL</h3>
<p>Date: 1st January, 2025</p>
<button class="view-more">View More</button>
</div>
</div>
<div class="section-footer">
<p>And many more exciting events to come!</p>
</div>
<!-- Custom Alert Box -->
<div id="custom-alert" class="custom-alert">
<div class="alert-content">
<p class="exclusive-note">Exclusive for Members Only!</p>
<p class="alert-description">Details are accessible to our valued members.</p>
<button class="membership-btn"><a href="hub.html#membership">Get Membership</a></button>
<button class="close-alert">Close</button>
</div>
</div>
</section>
<!-- more events -->
<section class="explore-events">
<h2>Explore More Events</h2>
<div class="categories-grid">
<!-- Category 1 -->
<div class="category-card" data-category="weekly-meets">
<h3>Weekly Meets</h3>
</div>
<!-- Category 2 -->
<div class="category-card" data-category="race-drift">
<h3>Race & Drift Competitions</h3>
</div>
<!-- Category 3 -->
<div class="category-card" data-category="seminar">
<h3>Seminars</h3>
</div>
<!-- Category 4 -->
<div class="category-card" data-category="exhibitions">
<h3>Exhibitions</h3>
</div>
<!-- Category 5 -->
<div class="category-card" data-category="auctions">
<h3>Auctions</h3>
</div>
<!-- Category 6 -->
<div class="category-card" data-category="tours">
<h3>Tours</h3>
</div>
</div>
<h4>Get our Exclusive Membership to access complete details</h4>
<button class="memb"><a href="hub.html#membership">Get Membership</a></button>
</div>
</section>
<!-- Modal for Event Details -->
<div class="event-modal" id="event-modal">
<div class="modal-content">
<h3 class="modal-title">Event Category</h3>
<div class="events-mini-cards" id="events-mini-cards"></div>
<button class="close-modal">Close</button>
</div>
</div>
<!-- Modal for Event Details -->
<div class="event-modal" id="event-modal">
<div class="modal-content">
<h3 class="modal-title">Event Name</h3>
<p class="modal-description">Event Description</p>
<button class="membership-btn">Get Membership to Register</button>
<button class="close-modal">Close</button>
</div>
</div>
<!-- ----------------------------------------------------------------------- -->
<section id="real-jdm-culture" class="real-jdm-culture">
<div class="section-header">
<h2>Real JDM & Car Culture Activities</h2>
<p>Explore authentic events and communities defining the global JDM culture. Click to visit their official pages!</p>
</div>
<div class="culture-slider">
<div class="slider-wrapper">
<!-- Cards will be dynamically populated here -->
</div>
</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/hub/events.js"></script>
</body>
</html>