-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
384 lines (370 loc) · 19.9 KB
/
index.html
File metadata and controls
384 lines (370 loc) · 19.9 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Frontend Bootcamp</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg bg-dark navbar-dark py-3">
<div class="container">
<a class="navbar-brand" href="#">Frontend Bootcamp</a>
<button class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navmenu">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navmenu">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="#home">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#courses">Courses</a></li>
<li class="nav-item"><a class="nav-link" href="#instructors">Instructors</a></li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Showcase -->
<section class="bg-dark text-light p-5 p-lg-0 text-center text-md-start" id="home">
<div class="container">
<div class="d-md-flex align-items-center">
<div class="w-75">
<h1>Become a <span class="text-warning">Web Developer</span></h1>
<p class="lead my-4">The Frontend Masters Bootcamp is a complete crash course, and everything you
need to get up and running with HTML, CSS and JavaScript. By completing the coursework contained
in the Bootcamp, along with practice, you will be well on your way into the world of web
development!</p>
<button class="btn btn-primary btn-lg" data-bs-toggle="modal" data-bs-target="#enroll">Start The
Enrollment</button>
</div>
<div>
<img class="img-fluid d-none d-md-block" src="img/showcase.svg" alt="Showcase">
</div>
</div>
</div>
</section>
<!-- Newsletter -->
<section class="bg-primary text-light text-center text-md-start">
<div class="container">
<div class="row py-5 px-3 px-md-0">
<div class="col-md-7 mb-3 mb-md-0">
<h2>Sign Up For Our Newsletter</h2>
</div>
<div class="input-group col-md">
<input type="text" class="form-control" placeholder="Enter Email" />
<button class="btn btn-dark btn-lg" type="button">Submit</button>
</div>
</div>
</div>
</section>
<!-- Section 3 -->
<section class="py-3">
<div class="container">
<div class="row text-center">
<div class="col-md">
<div class="card bg-dark text-light mb-3 mb-md-0">
<div class="card-body">
<div class="h1 my-3">
<i class="bi bi-laptop"></i>
</div>
<h3 class="card-title">Virtual</h3>
<p class="card-text">
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Iure, quas quidem possimus dolorum esse eligendi?
</p>
<a href="#" class="btn btn-primary">Read Me</a>
</div>
</div>
</div>
<div class="col-md">
<div class="card bg-secondary text-light mb-3 mb-md-0">
<div class="card-body">
<div class="h1 my-3">
<i class="bi bi-person-square"></i>
</div>
<h3 class="card-title">Hybrid</h3>
<p class="card-text">
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Iure, quas quidem possimus dolorum esse eligendi?
</p>
<a href="#" class="btn btn-dark">Read Me</a>
</div>
</div>
</div>
<div class="col-md">
<div class="card bg-dark text-light mb-3 mb-md-0">
<div class="card-body">
<div class="h1 my-3">
<i class="bi bi-people"></i>
</div>
<h3 class="card-title">In Person</h3>
<p class="card-text">
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Iure, quas quidem possimus dolorum esse eligendi?
</p>
<a href="#" class="btn btn-primary">Read Me</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="py-4" id="courses">
<div class="container">
<div class="d-lg-flex align-items-center gap-5">
<div>
<img class="img-fluid" src="./img/fundamentals.svg" alt="Fundamentals">
</div>
<div class="w-75">
<h2 class="my-3">Learn The Fundamentals</h2>
<p class="lead">What are three fundamentals of Web development?
The major building blocks of the web are HTML, CSS, and JavaScript. We will be talking about all
three languages.
</p>
<p>Is HTML CSS and JavaScript enough?
With simply HTML, CSS, and JavaScript, you can easily create the front end for a basic web
application. This web development front-end tech stack is sufficient for creating a web app with
basic dynamic controls that respond to user queries.</p>
<a href="#" class="btn btn-light mt-3">
<i class="bi bi-chevron-right"></i> Read More
</a>
</div>
</div>
</div>
</section>
<section class="py-4 bg-dark text-light">
<div class="container">
<div class="d-lg-flex align-items-center gap-5">
<div class="w-75">
<h2 class="my-3">Learn React</h2>
<p class="lead">React is a free and open-source front-end JavaScript library for building user
interfaces based on UI components. It is maintained by Meta and a community of individual
developers and companies.
</p>
<p>React is a JavaScript library developed by Facebook which, among other things, was used to build
Instagram.com. Its aim is to allow developers to easily create fast user interfaces for websites
and applications alike.</p>
<a href="#" class="btn btn-light mt-3">
<i class="bi bi-chevron-right"></i> Read More
</a>
</div>
<div class="py-4 py-lg-0">
<img class="img-fluid" src="./img/react.svg" alt="React">
</div>
</div>
</div>
</section>
<section class="py-4">
<div class="container">
<h2 class="text-center mb-4">Frequently Asked Questions</h2>
<div class="accordion">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#accordionitem2">
How much does it cost to attend?
</button>
</h2>
<div class="accordion-collapse collapse" id="accordionitem2">
<div class="accordion-body">
This is completely free - and we believe by educating more people about web development, we
get a better web - with more voices empowered to share their ideas, apps and perspectives.
So the catch is we hope you build something awesome. Oh, and if you'd like to become a
customer in the future to take more advanced courses and take your career to the next level,
that would be cool too. 😀
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#accordionitem3">
What will the Bootcamp tech me?
</button>
</h2>
<div class="accordion-collapse collapse" id="accordionitem3">
<div class="accordion-body">
You will learn three languages that build websites - HTML (the content of a websites), CSS
(how that content looks) and JavaScript (how that content acts). Upon completing the
Bootcamp you should be capable of creating a website with HTML, styling how it looks with
CSS, and having some control over how it acts with JavaScript.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#accordionitem4">
Where can I go after the Bootcamp?
</button>
</h2>
<div class="accordion-collapse collapse" id="accordionitem4">
<div class="accordion-body">
We recommend practicing the skills you've learned - making websites, apps and picking up
projects where you can. When you're ready to start taking your skills to the next level, we
have many courses that can land you jobs anywhere in front end web development.
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Instructors List -->
<section class="bg-primary text-light py-4" id="instructors">
<div class="container">
<h2 class="text-center">Our Instructors</h2>
<p class="text-center lead">Our instructors all have 5+ years working as a web developer in the industry
</p>
<div class="row p-4">
<div class="col-lg">
<div class="card bg-light text-dark my-4 my-lg-0">
<div class="card-body text-center">
<img src="https://randomuser.me/api/portraits/men/57.jpg" class="rounded-circle mb-3"
alt="" />
<h2 class="card-title py-2">John Doe</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Possimus unde quibusdam eius
odio sequi deleniti.</p>
<a href="#"><i class="bi bi-twitter text-dark mx-1"></i></a>
<a href="#"><i class="bi bi-facebook text-dark mx-1"></i></a>
<a href="#"><i class="bi bi-linkedin text-dark mx-1"></i></a>
<a href="#"><i class="bi bi-instagram text-dark mx-1"></i></a>
</div>
</div>
</div>
<div class="col-lg">
<div class="card bg-light text-dark my-4 my-lg-0">
<div class="card-body text-center">
<img src="https://randomuser.me/api/portraits/women/57.jpg" class="rounded-circle mb-3"
alt="" />
<h2 class="card-title py-2">Jane Doe</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Possimus unde quibusdam eius
odio sequi deleniti.</p>
<a href="#"><i class="bi bi-twitter text-dark mx-1"></i></a>
<a href="#"><i class="bi bi-facebook text-dark mx-1"></i></a>
<a href="#"><i class="bi bi-linkedin text-dark mx-1"></i></a>
<a href="#"><i class="bi bi-instagram text-dark mx-1"></i></a>
</div>
</div>
</div>
<div class="col-lg">
<div class="card bg-light text-dark my-4 my-lg-0">
<div class="card-body text-center">
<img src="https://randomuser.me/api/portraits/men/11.jpg" class="rounded-circle mb-3"
alt="" />
<h2 class="card-title py-2">Steve Smith</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Possimus unde quibusdam eius
odio sequi deleniti.</p>
<a href="#"><i class="bi bi-twitter text-dark mx-1"></i></a>
<a href="#"><i class="bi bi-facebook text-dark mx-1"></i></a>
<a href="#"><i class="bi bi-linkedin text-dark mx-1"></i></a>
<a href="#"><i class="bi bi-instagram text-dark mx-1"></i></a>
</div>
</div>
</div>
<div class="col-lg">
<div class="card bg-light text-dark my-4 my-lg-0">
<div class="card-body text-center">
<img src="https://randomuser.me/api/portraits/women/44.jpg" class="rounded-circle mb-3"
alt="" />
<h2 class="card-title py-2">Sara Smith</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Possimus unde quibusdam eius
odio sequi deleniti.</p>
<a href="#"><i class="bi bi-twitter text-dark mx-1"></i></a>
<a href="#"><i class="bi bi-facebook text-dark mx-1"></i></a>
<a href="#"><i class="bi bi-linkedin text-dark mx-1"></i></a>
<a href="#"><i class="bi bi-instagram text-dark mx-1"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="py-4">
<div class="container">
<div class="row gap-4 d-sm-block d-lg-flex">
<div class="col-md">
<h2 class="text-center mb-3">Contact Info</h2>
<ul class="list-group list-group-flush lead">
<li class="list-group-item"><span class="fw-bold">Main Address:</span> Lorem ipsum dolor sit
amet. </li>
<li class="list-group-item"><span class="fw-bold">Enrollment Phone:</span> (555) 555-5555</li>
<li class="list-group-item"><span class="fw-bold">Student Phone:</span> (333) 333-3333</li>
<li class="list-group-item"><span class="fw-bold">Enrollment Email:</span> Lorem ipsum dolor sit
amet.</li>
<li class="list-group-item"><span class="fw-bold">Student Email:</span> Lorem ipsum dolor sit
amet.</li>
</ul>
</div>
<div class="col-md bg-light mt-sm-4 mt-lg-0 rounded-3">
<h2 class="text-center">Contact Form</h2>
<div class="d-flex justify-content-center align-items-center">
<form action="" class="w-75 py-4 d-flex flex-column gap-2 text-sm-center text-lg-start">
<div>
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" placeholder="Enter Your Name">
</div>
<div>
<label for="email" class="form-label">Email</label>
<input type="text" class="form-control" id="email" placeholder="Enter Your Email">
</div>
<button class="btn btn-primary mt-3">Submit Now</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="p-5 bg-dark text-white text-center">
<div class="container">
<p class="lead">© 2022 Frontend Bootcamp</p>
<p>IUBAT Beginner Web Dev</p>
<a href="#">
<i class="bi bi-arrow-up-circle h1"></i>
</a>
</div>
</footer>
<!-- Modal -->
<div class="modal fade" id="enroll" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="enrollLabel">Enrollment</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<p class="lead">Fill out this form and we will get back to you</p>
<form>
<div class="mb-3">
<label for="first-name" class="col-form-label">
First Name:
</label>
<input type="text" class="form-control" id="first-name" />
</div>
<div class="mb-3">
<label for="last-name" class="col-form-label">Last Name:</label>
<input type="text" class="form-control" id="last-name" />
</div>
<div class="mb-3">
<label for="email" class="col-form-label">Email:</label>
<input type="email" class="form-control" id="email" />
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">
Close
</button>
<button type="button" class="btn btn-primary">Submit</button>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8"
crossorigin="anonymous"></script>
</body>
</html>