-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
633 lines (552 loc) · 27.9 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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>AcademiaEdge - Home</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link rel="shortcut icon" href="assets/img/favicon.png" type="image/png">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google FontS -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/owl.carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!--for active footer and active navbar styling-->
<style type="text/css">
#footer .footer-top .footer-links ul li:nth-child(1) {
color: #4be8b0;
}
</style>
<!-- js for using same nav and footer code-->
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
<script>
$(function () {
$("#samedropdown").load("/timesaving/dropdown.html");
$("#samefooter").load("/timesaving/footer.html");
});
</script>
<!--<script>
var c = document.getElementById("getnavactive").children;
c[0].classList.add("active");
</script>-->
</head>
<body style="margin-bottom: -25%;">
<!-- Start of HubSpot Embed Code -->
<script type="text/javascript" id="hs-script-loader" async defer src="//js.hs-scripts.com/9091447.js"></script>
<!-- End of HubSpot Embed Code -->
<!-- ======= Header ======= -->
<header id="header" class="fixed-top d-flex align-items-center header-transparent">
<div class="container d-flex align-items-center">
<div class="logo mr-auto">
<!--<a href="index.html"><img src="assets/img/hero-img.png" style="height:50px;width:50px;display:inline-block;"alt="" class="img-fluid"></a>-->
<h1 class="text-light" style="display:inline-block"><a href="index.html">AcademiaEdge</a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
</div>
<!--nav menu-->
<nav class="nav-menu navflex">
<ul>
<li class="active"><a href="/index.html">Home</a></li>
<li class="switchmobile"><a href="/courses.html">Courses</a></li>
<li class="switchdesktop">
<div class="navdropdown"><a href="/courses.html">Courses</a>
<div id="samedropdown"></div>
</div>
</li>
<li><a href="/joinus.html">Join Us</a></li>
<li><a href="/team.html">Team</a></li>
<!--/Users/nitrostrider/Desktop/Nitrostrider/acedemia-site/assets/js/main.js:-->
</ul>
</nav>
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="container">
<div class="row" style="margin-top: 4.5%;">
<div class="col-lg-7 pt-5 pt-lg-0 order-2 order-lg-1 d-flex align-items-center">
<div data-aos="zoom-out">
<h1 class="bigherotext">Improve Your Coding Skills With<span> AcademiaEdge</span></h1>
<h2 class="smallherotext">We are a non-profit organization aimed to teach students programming and
problem-solving skills</h2>
<div class="text-center text-lg-left" style="margin-top: -3%;">
<a style="color:white;" href="courses.html" class="btn-get-started scrollto">Register</a>
</div>
</div>
</div>
<div class="col-lg-5 order-1 order-lg-2 hero-img" data-aos="zoom-out" data-aos-delay="300"
style="padding-left: 2%;">
<img src="assets/img/hero-img5.png" class="img-fluid animated" alt="">
</div>
</div>
</div>
<svg class="hero-waves" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 24 150 28 " preserveAspectRatio="none">
<defs>
<path id="wave-path" d="M-160 44c30 0 58-18 88-18s 58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z"></path>
</defs>
<g class="wave1">
<use xlink:href="#wave-path" x="50" y="3" fill="rgba(255,255,255, .1)"></use>
</g>
<g class="wave2">
<use xlink:href="#wave-path" x="50" y="0" fill="rgba(255,255,255, .2)"></use>
</g>
<g class="wave3">
<use xlink:href="#wave-path" x="50" y="9" fill="#fff"></use>
</g>
</svg>
</section><!-- End Hero -->
<!-- About Section -->
<div class="w3-container w3-padding-32" id="about">
<div class="w3-row-padding w3-center" style="margin-top:7%; margin-bottom: 5%;">
<div class="w3-col l3 m6 s12 w3-padding" data-aos="fade-up" data-aos-delay="200">
<i class="fa fa-user w3-margin-bottom w3-jumbo w3-center" style="color: #3F61A8;"></i>
<p style="font-size: 30px;">Purpose</p>
<p style="font-size: 15px; padding-left: 25px; padding-right: 25px;">Through AcademiaEdge we hope to provide an
alternative to expensive programming classes by offering completely free, accessible, and high-quality coding
courses.</p>
</div>
<div class="w3-col l3 m6 s12 w3-padding" data-aos="fade-up" data-aos-delay="200">
<i class="fa fa-microphone w3-margin-bottom w3-jumbo" style="color: #3F61A8;"></i>
<p style="font-size: 30px;">Created By</p>
<p style="font-size: 15px; padding-left: 25px; padding-right: 25px;">High Schoolers and University Students who
strive to make education more equitable. We have advanced expertise in web development and programming, as
well as a passion for education and learning.</p>
</div>
<div class="w3-col l3 m6 s12 w3-padding" data-aos="fade-up" data-aos-delay="200">
<i class="fa fa-diamond w3-margin-bottom w3-jumbo" style="color: #3F61A8;"></i>
<p style="font-size: 30px;">Values</p>
<p style="font-size: 15px; padding-left: 25px; padding-right: 25px; ">We promise to be responsible for the
students we teach, giving them the highest quality education possible. Our course instructors are selected
through a vigorous interview process. We value integrity, privacy, and honesty in our classes and workplace.
</p>
</div>
<div class="w3-col l3 m6 s12 w3-padding" data-aos="fade-up" data-aos-delay="200">
<i class="fa fa-cog w3-margin-bottom w3-jumbo" style="color: #3F61A8;"></i>
<p style="font-size: 30px;">Structure</p>
<p style="font-size: 15px;">In order to give an individualized experience, each class has two teachers and is
limited to 10-15 students. Each class will be held weekly over Zoom with course materials posted in Google
Classroom. Once a course is full a waitlist will be created.</p>
</div>
</div>
</div>
<!-- ======= Numbers Section ======= -->
<div class="container">
<div class="section-title row" data-aos="fade-up" style="margin-bottom:-30px">
<h2 style="padding-left: 20px; font-size: 18.5px; color: #01036f;">By the Numbers </h2>
</div>
</div>
<section id="counts" class="counts">
<div class="container">
<div class="row" data-aos="fade-up">
<div class="col-lg-4 col-md-6">
<div class="count-box">
<i class="icofont-simple-smile"></i>
<span style="display: inline-flex; align-items: center;"><span data-toggle="counter-up">125</span>+</span>
<p>Students</p>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-5 mt-md-0">
<div class="count-box">
<i class="icofont-live-support"></i>
<span style="display: inline-flex; align-items: center;"><span data-toggle="counter-up">14</span></span>
<p>Teachers</p>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-5 mt-md-0">
<div class="count-box">
<i class="icofont-users-alt-5"></i>
<span style="display: inline-flex; align-items: center;"><span data-toggle="counter-up">11</span></span>
<p>Courses</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Counts Section -->
<!-- ======= POPULAR COURSES SECTION STARTS ======= -->
<section id="courses" class="team pt-110" style="margin-bottom: 2%;">
<div class="w3-container" style="margin-left: 4%; margin-right: 4%;">
<div class="section-title" data-aos="fade-up">
<h2>Courses</h2>
<p>Our Popular Courses</p>
</div>
<div class="coursegrid w3-center" style="margin-top: -2%;">
<!--all images 506 by 337 px-->
<div class="coursegriditem" style="display:block">
<!--<div class="about-content mt-50 wow fadeInUpBig" data-wow-duration="1.5s" data-wow-delay="0.5s">-->
<div class="member" data-aos="zoom-in" data-aos-delay="100">
<div class="pic"><img src="assets/img/courseimg/htmlcssclasspic.jpg" class="img-fluid"
style="margin-bottom:20%;" alt="Web Development Image"></div>
<div class="member-info">
<h4 style="padding-left: 5%; padding-right: 5%;">Introduction to Web Development and Design</h4>
<span style="padding-left: 5%; padding-right: 5%;">Lead Teachers: Raghav Sriram and Maxwell Ye</span>
<div class="social">
<a href="courses/webdevintro.html"><button class="button button1">Learn More</button></a>
</div>
</div>
<!--</div>-->
</div>
</div>
<div class="coursegriditem" style="display:block">
<div class="member" data-aos="zoom-in" data-aos-delay="100">
<div class="pic"><img src="\assets\img\courseimg\scratchclassimage.png" class="img-fluid"
style="margin-bottom:20%;" alt="scratch image"></div>
<div class="member-info">
<h4>Scratch: A Basic Introduction to Programming</h4>
<span style="padding-left: 5%; padding-right: 5%;">Lead Teachers: Eamon Mukhopadhyay and Eric Guo</span>
<div class="social">
<a href="courses/scratch.html"><button class="button button1">Learn More</button></a>
</div>
</div>
</div>
</div>
<div class="coursegriditem" style="display:block">
<div class="member" data-aos="zoom-in" data-aos-delay="100">
<div class="pic"><img src="assets/img/courseimg/introtopython.png" class="img-fluid"
style="margin-bottom:20%;" alt="Amanda profilepic"></div>
<div class="member-info">
<h4>An Introduction to Python</h4>
<span style="padding-left: 5%; padding-right: 5%;">Lead Teachers: Eamon Mukhopadhyay and Avinash
Valuveri</span>
<div class="social">
<a href="courses/pythonintro.html"><button class="button button1">Learn More</button></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="w3-center">
<a href="/courses.html"><but class="button15 w3-center" data-aos="fade-up">View More</but></a>
</div>
</section>
<section id="testimonials" class="testimonials" style="margin-top: -2.5%;">
<div class="container">
<div class="owl-carousel testimonials-carousel" data-aos="zoom-in">
<div class="testimonial-item">
<h3>Padmasree Ramkumar</h3>
<h4>Parent</h4>
<p style="font-size: 18px; color: #fff">
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
AcademiaEdge is really great because it is an alternative to expensive programming classes and helps parents
save money.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item">
<h3>Student</h3>
<h4>6th Grade Student</h4>
<p style="font-size: 18px; color: #fff">
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
I love the kindness and patience of the instructors. I really can't think of a way to make my experience any
better.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item">
<h3>Dhruv</h3>
<h4>Parent of 6th Grade Student</h4>
<p style="font-size: 18px; color: #fff">
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
The teachers are really helpful and knowledgeable. They make the kids understand how things work and also
tell the kids their own experiences.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item">
<h3>Yan Zhu</h3>
<h4>Parent</h4>
<p style="font-size: 18px; color: #fff">
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
High-Quality Courses with Qualified Instructors!
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
<div class="testimonial-item">
<h3>Linda Wang</h3>
<h4>Parent</h4>
<p style="font-size: 18px; color: #fff">
<i class="bx bxs-quote-alt-left quote-icon-left"></i>
It's a great idea and it's incredible it's free since most coding classes charge a lot.
<i class="bx bxs-quote-alt-right quote-icon-right"></i>
</p>
</div>
</div>
</div>
</section>
<!-- End Testimonials Section -->
<section style="margin-bottom: -0.5%;">
<div class="container" style="color: black; font-size:18px; font-family: Arial, Helvetica, sans-serif; margin-bottom: -3%;">
<div class="section-title" data-aos="fade-up">
<h2>Join Us</h2>
<p>Become a Teacher</p>
</div>
<div class="w3-row" style="margin-top: -12%;" data-aos="fade-up">
<div class="w3-col l7 m12 s12">
<ul class="joinuslist">
<h3 class="joinusheader w3-center" style="padding-top:13.5%; font-size: 30px;"></h3>
<li>Create Lessons and Plan Lectures</li>
<li>Assign Projects and Homework to their Students</li>
<li>Incorporate Project-Based-Learning in their classroom</li>
<li>Help Mentor Students Towards Success in All Aspects of Programming</li>
<li>Receive 50 Certified Volunteer Hours per Class Taught</li>
</ul>
<div class="w3-center">
<a target="_blank" href="https://forms.gle/5qZxTfd9pHmnNSjQ9" style="margin-bottom: 25%;" data-aos="fade-up"><button class="button15 w3-center"><span>Application</span></button></a>
</div>
</div>
<div class="w3-col l5 m12 s12">
<div style="list-style-type: none" data-aos="fade-up"><img src="assets\img\joinus\teacher-1.png" class="img-fluid" alt="Maxwell profilepic"></div>
</div>
</div>
</div>
</div>
</section>
<main id="main">
<!-- ======= Features Section =======
<section id="features" class="features">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Signup dates for this year</h2>
<p>Check The Dates</p>
</div>
<div class="row" data-aos="fade-left">
<div class="col-lg-3 col-md-4">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="50">
<i class="ri-calendar-todo-line" style="color: #FF7F00;"></i>
<h3><a href="">Fall Signups- TBD</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="100">
<i class="ri-calendar-todo-line" style="color: #01BFFF;"></i>
<h3><a href="">Winter Signups- TBD</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-md-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="150">
<i class="ri-calendar-todo-line" style="color: #A7FC01;"></i>
<h3><a href="">Spring Signups - February 21<sup>st</sup> 2021</a></h3>
</div>
</div>
<div class="col-lg-3 col-md-4 mt-4 mt-lg-0">
<div class="icon-box" data-aos="zoom-in" data-aos-delay="200">
<i class="ri-calendar-todo-line" style="color: #FFCC33;"></i>
<h3><a href="">Summer Signups- TBD</a></h3>
</div>
</div>
</div>
</section>
-->
<!-- End Features Section -->
<!-- ======= F.A.Q Section ======= -->
<section id="faq" class="faq section-bg">
<div class="container">
<div class="section-title">
<h2>FAQ</h2>
<p>Frequently Asked Questions</p>
</div>
<div class="faq-list">
<ul>
<li>
<i class="bx bx-help-circle icon-help"></i>
<a data-toggle="collapse" class="collapsed" href="#faq-list-1"
style="text-decoration:none;color:#343a40;">What's the price for a class?<i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-1" class="collapse show" data-parent=".faq-list">
<p>Free! We are a non-profit organization, which means that our program is 100% free of charge.
</p>
</div>
</li>
<li>
<i class="bx bx-help-circle icon-help"></i>
<a data-toggle="collapse" class="collapsed" href="#faq-list-2"
style="text-decoration:none;color:#343a40;">Who can sign-up?<i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-2" class="collapse" data-parent=".faq-list">
<p>Anyone! Our classes are free making it accessible for anyone and everyone to get involved or learn a
new programming language.
</p>
</div>
</li>
<li>
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-3" class="collapsed"
style="text-decoration:none;color:#343a40;">What platform do you use for classes?
<i class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-3" class="collapse" data-parent=".faq-list">
<p>Our classes are over Zoom and we use Google Classroom to post class materials, assign homework, and
make important announcements.
</p>
</div>
</li>
<li>
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-4" class="collapsed"
style="text-decoration:none;color:#343a40;">Are you looking for new teachers? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-4" class="collapse" data-parent=".faq-list">
<p>Yes, we are always looking to find new teachers and organizers for AcademiaEdge. If you are
interested with partnering with us please visit the Join Us page!</p>
</div>
</li>
<li>
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-5" class="collapsed"
style="text-decoration:none;color:#343a40;">What do you teach? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-5" class="collapse" data-parent=".faq-list">
<p>
Our courses are focused on programming and coding. We offer a variety of computer science related
courses.
</p>
</div>
</li>
<li>
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-6" class="collapsed"
style="text-decoration:none;color:#343a40;">How many classes do you have? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-6" class="collapse" data-parent=".faq-list">
<p>
Currently we offer 15 unique and well-crafted courses and are always looking towards expanding our
selection.
</p>
</div>
</li>
<li>
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-7" class="collapsed"
style="text-decoration:none;color:#343a40;"> How long are your classes? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-7" class="collapse" data-parent=".faq-list">
<p>
Our classes range from 45 minutes to an hour long.
</p>
</div>
</li>
<li>
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-8" class="collapsed"
style="text-decoration:none;color:#343a40;"> Is there homework for students? <i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-8" class="collapse" data-parent=".faq-list">
<p>
Yes, every week teachers will post homework which students are expected to complete and submit. In the
following week, we will grade and go over the homework in class.
</p>
</div>
<li>
<i class="bx bx-help-circle icon-help"></i> <a data-toggle="collapse" href="#faq-list-9" class="collapsed"
style="text-decoration:none;color:#343a40;">What if my question isn’t up here?<i
class="bx bx-chevron-down icon-show"></i><i class="bx bx-chevron-up icon-close"></i></a>
<div id="faq-list-11" class="collapse" data-parent=".faq-list">
<p>
Use the chat feature or send us an email at [email protected]!
</p>
</div>
</li>
</li>
</ul>
</div>
</div>
</section>
<!-- End F.A.Q Section -->
<!-- ======= Contact Section ======= -->
<section class="contact">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Contact</h2>
<p>Contact Us</p>
</div>
<div class="row">
<div class="col-lg-4" data-aos="fade-right" data-aos-delay="100">
<div class="info">
<div class="address">
<i class="icofont-google-map"></i>
<h4>Location:</h4>
<p>Virtual from Home!</p>
</div>
<div class="email">
<i class="icofont-envelope"></i>
<h4>Email:</h4>
<p>[email protected]</p>
</div>
<div class="phone">
<i class="icofont-phone"></i>
<h4>Phone</h4>
<p>(317) 675-8645</p>
</div>
</div>
</div>
<div class="col-lg-8 mt-5 mt-lg-0" data-aos="fade-left" data-aos-delay="200">
<form action="contact.php" method="post" class="php-email-form">
<div class="form-row">
<div class="col-md-6 form-group">
<input id="firstnamec" type="text" name="firstname" placeholder="Your Name" data-rule="minlen:4"
data-msg="Please enter at least 4 chars" />
<div class="validate"></div>
</div>
<div class="col-md-6 form-group">
<input type="Email" id="emailc" name="email" placeholder="Your Email" data-rule="email"
data-msg="Please enter a valid email" />
<div class="validate"></div>
</div>
</div>
<div class="form-group">
<input type="text" id="subjectc" name="subject" placeholder="Subject" data-rule="minlen:4"
data-msg="Please enter at least 8 chars of subject" />
<div class="validate"></div>
</div>
<div class="form-group">
<textarea name="message" id="message" rows="5" data-rule="required"
data-msg="Please write something for us" placeholder="Message"></textarea>
</div>
<div class="text-center"><button style="color:white" type="submit" class="submity" name="submit"
class="btn_email">Send Message</button></div>
</form>
</div>
</div>
</div>
</section>
</main><!-- End #main -->
<div id="samefooter"></div>
<a href="#" class="back-to-top" width="10%"><i class="icofont-simple-up"></i></a>
<div id="preloader"></div>
<!-- Vendor JS Files -->
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/venobox/venobox.min.js"></script>
<script src="assets/vendor/waypoints/jquery.waypoints.min.js"></script>
<script src="assets/vendor/counterup/counterup.min.js"></script>
<script src="assets/vendor/owl.carousel/owl.carousel.min.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<!-- Template Main JS File -->
<script src="/assets/js/main.js"></script>
<!--Template Main2 JS File-->
<script type="text/javascript" src="/assets/js/main2.js"></script>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'G-2JPRX9CS4H', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
</body>
</html>