-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
407 lines (383 loc) · 16.7 KB
/
index.html
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>Capstone Project</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous" />
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class="container">
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="logo">
<img src="assets/images/logo.jpg" alt="Logo" style="border-radius: 50%; height: 5rem;">
</div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#nav-list" aria-controls="nav-list" aria-expanded="false" aria-label="Toggle navigation">
<i class="fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="nav-list">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a href="#Home" class="nav-link active">Home</a>
</li>
<li class="nav-item">
<a href="#Services" class="nav-link">Services</a>
</li>
<li class="nav-item">
<a href="#About" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="#Testimonial" class="nav-link">Testimonials</a>
</li>
<li class="nav-item">
<a href="#Contact" class="nav-link">Contact Us</a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<!-- Hero Section Starts Here -->
<div class="hero-section" id="Home">
<div class="overlay"></div>
<div class="hero-content">
<h1 class="brand-name">Dev Dynasty</h1>
<p class="tagline">Where Coding Dreams Become Reality</p>
<p class="supporting-text">
At Dev Dynasty, we don't just teach you to code, we help you shape your career in the tech world. Join us to unlock your potential, build amazing projects, and gain career guidance to make your mark.
</p>
</div>
</div>
<!--Services Section-->
<!-- Services Section -->
<div class="services-section"id="Services">
<h2>Our Services</h2>
<div class="row">
<div class="service-item">
<i class="fas fa-desktop"></i>
<h4>Interactive Platform</h4>
<p>Interactive lessons and hands-on projects to make learning enjoyable and effective.</p>
</div>
<div class="service-item">
<i class="fas fa-question-circle"></i>
<h4>Doubt Support</h4>
<p>Quickly resolve your doubts and find the best problem-solving approach.</p>
</div>
<div class="service-item">
<i class="fas fa-keyboard"></i>
<h4>Interactive Coding Challenges</h4>
<p>Weekly coding contests and company-specific problems.</p>
</div>
<div class="service-item">
<i class="fas fa-mobile-alt"></i>
<h4>Mobile Coding</h4>
<p>Code on mobile and learn from anywhere, anytime.</p>
</div>
<div class="service-item">
<i class="fas fa-calendar-alt"></i>
<h4>Flexible Scheduling</h4>
<p>Learn at your own pace with flexible scheduling.</p>
</div>
<div class="service-item">
<i class="fas fa-certificate"></i>
<h4>Certification Programs</h4>
<p>Earn recognized certifications to boost your resume and career prospects.</p>
</div>
</div>
</div>
<!--Banner Section-->
<div class="container-fluid">
<section class="row banner">
<div class="lg-5 md-12">
<h4>Coding <em>solutions</em> and <strong>Programming</strong> masterry!</h4>
</div>
<div class="lg-7 md-12">
<div class="btn btn-1">
<a href="#About">Discover More</a>
</div>
<div class="btn btn-2">
<a href="#Contact">Contact Us</a>
</div>
</div>
</section>
</div>
<!-- About us-->
<section id="About" class="about-section">
<h2>Our Courses</h2>
<div class="courses-container">
<div class="course-card animate__animated animate__fadeInUp">
<h3>Full-Stack Web Development</h3>
<ul>
<li><strong>Instructor:</strong> John Doe</li>
<li><strong>Duration:</strong> 6 months</li>
<li><strong>Price:</strong> $499</li>
</ul>
</div>
<div class="course-card animate__animated animate__fadeInUp animate__delay-1s">
<h3>Data Science with Python</h3>
<ul>
<li><strong>Instructor:</strong> Jane Smith</li>
<li><strong>Duration:</strong> 5 months</li>
<li><strong>Price:</strong> $599</li>
</ul>
</div>
<div class="course-card animate__animated animate__fadeInUp animate__delay-2s">
<h3>Machine Learning & AI</h3>
<ul>
<li><strong>Instructor:</strong> Alice Johnson</li>
<li><strong>Duration:</strong> 8 months</li>
<li><strong>Price:</strong> $699</li>
</ul>
</div>
<div class="course-card animate__animated animate__fadeInUp animate__delay-3s">
<h3>Mobile App Development</h3>
<ul>
<li><strong>Instructor:</strong> Bob Lee</li>
<li><strong>Duration:</strong> 4 months</li>
<li><strong>Price:</strong> $399</li>
</ul>
</div>
<div class="course-card animate__animated animate__fadeInUp animate__delay-4s">
<h3>Cybersecurity</h3>
<ul>
<li><strong>Instructor:</strong> Chris Martin</li>
<li><strong>Duration:</strong> 7 months</li>
<li><strong>Price:</strong> $549</li>
</ul>
</div>
<div class="course-card animate__animated animate__fadeInUp animate__delay-5s">
<h3>UI/UX Design</h3>
<ul>
<li><strong>Instructor:</strong> Laura Benson</li>
<li><strong>Duration:</strong> 3 months</li>
<li><strong>Price:</strong> $349</li>
</ul>
</div>
<div class="course-card animate__animated animate__fadeInUp animate__delay-6s">
<h3>Java Spring Boot</h3>
<ul>
<li><strong>Instructor:</strong> Ankush Singla</li>
<li><strong>Duration:</strong> 7 months</li>
<li><strong>Price:</strong> $989</li>
</ul>
</div>
<div class="course-card animate__animated animate__fadeInUp animate__delay-7s">
<h3>Cloud Computing</h3>
<ul>
<li><strong>Instructor:</strong> Raj Patil</li>
<li><strong>Duration:</strong> 7 months</li>
<li><strong>Price:</strong> $749</li>
</ul>
</div>
</div>
</section>
<!--Form section-->
<section class="form-section">
<div class="form-container">
<div class="form-image">
<img src="assets/images/pic.png" alt="Girl standing" class="girl-image">
</div>
<div class="form">
<h2>Share your details</h2>
<form>
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Your Name">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Your Email">
</div>
<div class="form-group">
<label for="learning-area">Learning Area</label>
<input type="text" id="learning-area" name="learning-area" placeholder="Your Learning Area">
</div>
<div class="form-group">
<label for="course-interest">Interest in Course</label>
<select id="course-interest" name="course-interest">
<option value="fullstack">Full-Stack Web Development</option>
<option value="datascience">Data Science with Python</option>
<option value="ai">Machine Learning & AI</option>
<option value="appdev">Mobile App Development</option>
<option value="cybersecurity">Cybersecurity</option>
<option value="uiux">UI/UX Design</option>
<option value="springboot">Java Spring Boot</option>
<option value="cloud">Cloud Computing</option>
</select>
</div>
<div class="form-group">
<button type="submit">Submit</button>
</div>
</form>
</div>
</div>
</section>
<!--Testimonail section-->
<!-- Section Heading -->
<div class="test">
<h2 id="Testimonial"class="section-heading text-center my-5" style="color: var(--secondary_color); font-size: 2.5rem; letter-spacing: 2px;">
What Our Students Say
</h2>
<!-- Carousel -->
<div id="studentCarousel" class="carousel slide" data-bs-ride="carousel">
<!-- Carousel indicators -->
<ol class="carousel-indicators">
<li data-bs-target="#studentCarousel" data-bs-slide-to="0" class="active"></li>
<li data-bs-target="#studentCarousel" data-bs-slide-to="1"></li>
<li data-bs-target="#studentCarousel" data-bs-slide-to="2"></li>
</ol>
<!-- Carousel inner -->
<div class="carousel-inner">
<div class="carousel-item active">
<div class="enhanced-card p-4 d-flex align-items-center justify-content-between">
<div>
<h3 class="student-name">John Alice</h3>
<p class="student-thoughts">"This course changed my perspective on coding. The projects were hands-on and incredibly insightful."</p>
<p class="student-course">Enrolled in: Java Spring Boot</p>
</div>
<img src="assets/images/testimonials-01.jpg" alt="Student 1" class="student-image">
</div>
</div>
<div class="carousel-item">
<div class="enhanced-card p-4 d-flex align-items-center justify-content-between">
<div>
<h3 class="student-name">Sarena Fernandes</h3>
<p class="student-thoughts">"The instructors were so supportive, and I gained confidence in Cloud Computing."</p>
<p class="student-course">Enrolled in: Cloud Computing</p>
</div>
<img src="assets/images/testimonials-02.png" alt="Student 2" class="student-image">
</div>
</div>
<div class="carousel-item">
<div class="enhanced-card p-4 d-flex align-items-center justify-content-between">
<div>
<h3 class="student-name">Christiana james</h3>
<p class="student-thoughts">"Absolutely loved the interactive lessons, especially the personalized feedback from mentors!"</p>
<p class="student-course">Enrolled in: Web Development</p>
</div>
<img src="assets/images/testimonials-03.jpg" alt="Student 3" class="student-image">
</div>
</div>
</div>
<!-- Carousel controls -->
<a class="carousel-control-prev" href="#studentCarousel" role="button" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</a>
<a class="carousel-control-next" href="#studentCarousel" role="button" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</a>
</div>
</div>
<!--contact section-->
<section class="contact-section" id="Contact">
<div class="container">
<h2 class="contact-heading">Get in Touch</h2>
<div class="map-container">
<!-- Embed map of Thane -->
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d15005.306611307593!2d73.0149!3d19.2184!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3be7b93a54ad999b%3A0x1e4e9b6e2d1a4e4b!2sThane%2C%20Maharashtra%2C%20India!5e0!3m2!1sen!2sus!4v1692222688472!5m2!1sen!2sus"
width="100%"
height="400"
style="border:0;"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<div class="contact-cards">
<div class="contact-card">
<i class="fas fa-envelope"></i>
<h4>Email</h4>
<p>[email protected]</p>
</div>
<div class="contact-card">
<i class="fas fa-phone"></i>
<h4>Contact Number</h4>
<p>+91 7738944691</p>
</div>
<div class="contact-card">
<i class="fas fa-map-marker-alt"></i>
<h4>Address</h4>
<p>Naupada, Thane, Maharashtra, India</p>
</div>
</div>
</div>
</section>
<!--Inquiry form -->
<!-- Feedback Section -->
<section id="feedback">
<div class="container">
<h2 class="section-heading" style="text-align: center;">We Value Your Feedback</h2>
<div class="feedback-card animate__animated animate__fadeIn">
<h3>Feedback Form</h3>
<form>
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="course">Interested Course</label>
<select id="course" name="course">
<option value="" disabled selected>Select a course</option>
<option value="java">Java Programming</option>
<option value="python">Python Programming</option>
<option value="webdev">Web Development</option>
<option value="cloud">Cloud Computing</option>
<!-- Add more options as needed -->
</select>
</div>
<div class="form-group">
<label for="feedback">Your Feedback</label>
<textarea id="feedback" name="feedback" rows="4" required></textarea>
</div>
<button type="submit" class="btn-submit">Submit</button>
</form>
</div>
</div>
</section>
<!--footer section-->
<footer class="footer">
<div class="footer-content">
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="#Home">Home</a></li>
<li><a href="#About">About Us</a></li>
<li><a href="#Services">Services</a></li>
<li><a href="#Testimonial">Testimonials</a></li>
<li><a href="#Contact">Contact Us</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact Info</h3>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Phone: +91 7738944691</p>
<p>Address: Naupada, Thane(W),400604/p>
</div>
<div class="footer-section">
<h3>Follow Us</h3>
<div class="social-icons">
<a href="#https://x.com/home"><i class="fab fa-twitter"></i></a>
<a href="#https://www.linkedin.com/in/nihar-kilje-50767b259/"><i class="fab fa-linkedin-in"></i></a>
<a href="#https://www.instagram.com/nihar_kilje04/"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Dev Dynasty. All rights reserved.</p>
</div>
</footer>
</body>
</html>