-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
726 lines (609 loc) · 34 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
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Opensource Buddy</title>
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet'
type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<!-- Theme CSS -->
<link href="css/agency.css" rel="stylesheet">
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav id="mainNav" class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll animated infinite bounce" href="#page-top"
style="font-size: 80px; padding-top: 30px; padding-bottom: 40px">OSB </a><br>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#services"><i class="fa fa-globe" aria-hidden="true"></i>
Community</a>
</li>
<li>
<a class="page-scroll" href="#portfolio"><i class="fa fa-picture-o" aria-hidden="true"></i>
Programms</a>
</li>
<li>
<a class="page-scroll" href="#about"><i class="fa fa-diamond" aria-hidden="true"></i>
Learn Why</a>
</li>
<li>
<a class="page-scroll" href="#team"><i class="fa fa-users" aria-hidden="true"></i>
Team</a>
</li>
<li>
<a class="page-scroll" href="#contact"><i class="fa fa-volume-control-phone"
aria-hidden="true"></i>
Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="intro-text">
<div class="intro-lead-in" id="typed-strings">
Opensource for everyone
<!-- Opensource for everyone -->
</div>
<span id="typed"></span>
<div class="intro-heading">Start your Opensource Journey</div>
<a href="#services" class="page-scroll btn btn-xl animate__pulse"> Explore</a>
<!-- <a href="#services" class="page-scroll btn btn-xl animate__pulse"> Explore</a> -->
</div>
</div>
</header>
<!-- what is open source about -->
<section id="services text-center">
<div class="container ossbox text-center">
<div class="col-sm-12 text-center">
<h2 class="section-heading"><i class="fa fa-github" aria-hidden="true"></i> What it means to contribute
</h2>
<h3 class="section-subheading text-muted">If you’re a new open source contributor, the process can be
intimidating. How do you find the right project? What if you don’t know how to code? What if
something goes wrong?</h3>
</div>
</div>
</div>
</section>
<!-- Community Section -->
<!-- WHY OPENSOURCE -->
<section id="about" data-parallax="scroll" data-image-src="img/octocat.png">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading" style="color: #B83B5E;">Why Opensource ?</h2>
<h3 class="section-subheading text-muted">Benifuts of Opensource contributions</h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<ul class="timeline">
<li>
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/confidence.png" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 style="color: #F08A5D;">Build your confidence as a developer</h4>
<!-- <h4 class="subheading" style="color: aliceblue">launch Party</h4> -->
</div>
<div class="timeline-body">
<p class="text-muted">By contributing to an open source project, you receive
immediate feedback on your development and programming skills.
You may get suggestions about the choice of a function name, the way you used
conditional logic,
or how using a goroutine you didn't know about speeds up the execution of your
program.
This is all invaluable feedback to receive when you're learning something new
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/resume.png" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 style="color: #F08A5D;">Build your resume or CV</h4>
<!-- <h4 class="subheading" style="color: aliceblue;">Are you there</h4> -->
</div>
<div class="timeline-body">
<p class="text-muted">open source provides the perfect opportunity! In addition to
building your skills and increasing your confidence,
all of your open source contributions are public and demonstrate the skills you
have mastered and the projects you've tackled.
In fact, your open source profile by itself could provide you with a strong
portfolio that sets you apart from other job candidates
</p>
</div>
</div>
</li>
<li>
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/network.png" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 style="color: #F08A5D;">Build your professional network</h4>
<!-- <h4 class="subheading" style="color: aliceblue;"></h4> -->
</div>
<div class="timeline-body">
<p class="text-muted">Building a strong professional network can help you achieve
your career goals,
learn more about your own or adjacent fields, and help with a job search.
Contributing to open source is an excellent way to build that network.
You join a welcoming community of hundreds or thousands of contributors,
interact with likeminded developers in the open source space, and build
connections along the way.
You might even get introduced to key people in the industry, like the maintainer
of a high-profile open source tool.
Such relationships can turn into career-changing connections.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-image">
<img class="img-circle img-responsive" src="img/about/concept.jpg" alt="">
</div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4 style="color: #F08A5D;">Get a better understanding of technology</h4>
</div>
<div class="timeline-body">
<p class="text-muted">Companies and individuals who contribute to an open source
project get to know the technology at a much deeper level.
It helps in strengthening the understanding of the project.
It helps in developing the internal use of tech in the team or organisation
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<a href="https://www.dataschool.io/how-to-contribute-on-github/">
<div class="timeline-image animated infinite tada" style="color: aliceblue">
<h4 style="color:aliceblue;size: 10px;">
First Step
<br>To Opensource
</h4>
</div></a>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- isssues to grab -->
<section id="Issues" class="bg-black" style="background-color: #2c302d;">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading" style="color: #af3e75;"><i class="fa fa-picture-o" aria-hidden="true"></i> Issues To Grab
</h2>
<h3 class="section-subheading text-muted">Learn Any programming language By Contributing Open source</h3>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 issue-box">
<div class="cardissue">
<div class="cardcontentissue">
<a href="https://goodfirstissue.dev/language/python">
<img src="https://raw.githubusercontent.com/docker-library/docs/01c12653951b2fe592c1f93a13b4e289ada0e3a1/python/logo.png" height="150px" width="150px" class="text-center imageissue"/>
</a>
<h3 class="headerissue">python</h3>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 issue-box">
<div class="cardissue">
<div class="cardcontentissue">
<a href="https://goodfirstissue.dev/language/javascript" class="js-link" data-toggle="modal">
<img src="https://pluralsight2.imgix.net/paths/images/javascript-542e10ea6e.png" height="150px" width="150px" class="text-center imageissue"/>
</a>
<h3 class="headerissue">Javascript</h3>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 issue-box">
<div class="cardissue">
<div class="cardcontentissue">
<a href="https://goodfirstissue.dev/language/cplusplus" class="cpp-link" data-toggle="modal">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/18/ISO_C%2B%2B_Logo.svg/1822px-ISO_C%2B%2B_Logo.svg.png" height="150px" width="150px" class="text-center imageissue"/>
</a>
<h3 class="headerissue">C++</h3>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 issue-box pt-5">
<div class="cardissue">
<div class="cardcontentissue">
<a href="https://goodfirstissue.dev/language/html" class="html-link" data-toggle="modal">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/HTML5_logo_and_wordmark.svg/512px-HTML5_logo_and_wordmark.svg.png" height="150px" width="150px" class="text-center imageissue"/>
</a>
<h3 class="headerissue">HTML</h3>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 issue-box pt-5">
<div class="cardissue">
<div class="cardcontentissue">
<a href="https://goodfirstissue.dev/language/go" class="go-link" data-toggle="modal">
<img src="https://go.dev/blog/go-brand/Go-Logo/PNG/Go-Logo_Blue.png" height="150px" width="150px" class="text-center imageissue"/>
</a>
<h3 class="headerissue">Golang</h3>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 issue-box pt-5">
<div class="cardissue">
<div class="cardcontentissue">
<a href="https://goodfirstissue.dev/language/java" class="java-link" data-toggle="modal">
<img src="http://assets.stickpng.com/images/58480979cef1014c0b5e4901.png" height="150px" width="150px" class="text-center imageissue"/>
</a>
<h3 class="headerissue">Java</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- community -->
<section id="services">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center" style="color: #af3e75;">
<h2 class="section-heading"><i class="fa fa-globe" aria-hidden="true" ></i> Community</h2>
<h3 class="section-subheading text-muted"> </t>You can call for our services any time.</h3>
</div>
</div>
<div class="row text-center">
<a href="https://www.commclassroom.org/">
<div class="col-md-4">
<div>
<image
src="https://d1aettbyeyfilo.cloudfront.net/kunalk/23464729_1634815025cY3PNG_logo_copy.webp"
class="ccimage" />
</div>
<h4 class="service-heading" style="color:#af3e75;">Community Classroom</h4>
<p class="text-muted">
The organisation is founded by Kunal Kushwaha. We provide hands-on training, mentorship for FREE
and have an inclusive community.</p>
</div></a>
<div class="col-md-4">
<a href="https://www.eddiehub.org/">
<div>
<image
src="https://d1aettbyeyfilo.cloudfront.net/eddiejaoude/16646537_1612018275648eddiehub_copy.webp"
class="ccimage" />
</div>
<h4 class="service-heading" style="color: #af3e75;">Eddie HUb</h4>
<p class="text-muted">Open Source community aimed at encouraging and promoting communication, best
practices and technical expertise in an inclusive and welcoming environment</p>
</div> </a>
<div class="col-md-4">
<div>
<a href="https://www.cncf.io/online-programs/">
<image
src="https://www.inovex.de/wp-content/uploads/2021/03/technologie-partner-cncf-1500x880.png"
class="ccimage" />
</div>
<h4 class="service-heading" style="color: #af3e75;">CNCF</h4>
<p class="text-muted">Cloud Native Computing Foundation (CNCF) serves as the vendor-neutral home for
many of the fastest-growing open source projects, including Kubernetes, Prometheus, and Envoy.
</p>
</div></a>
</div>
</div>
</div>
</section>
<!-- Opensource Programms -->
<section id="portfolio" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading" style="color:
#af3e75;"><i class="fa fa-picture-o" aria-hidden="true"></i> Opensource Programms
</h2>
<h3 class="section-subheading text-muted"></h3>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="https://summerofcode.withgoogle.com/" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<div class="text-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/GSoC_logo.svg/1200px-GSoC_logo.svg.png"
class="img-responsive prog " alt="">
</div>
</a>
<div class="portfolio-caption">
<h4>GSOC</h4>
<p class="text-muted"></p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="https://hacktoberfest.digitalocean.com/register" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<div class="text-center">
<img src="https://hacktoberfest.digitalocean.com/_nuxt/img/logo-hacktoberfest-full2.aa1e9d9.svg"
class="img-responsive prog " alt="">
</div>
</a>
<div class="portfolio-caption">
<h4>HACKTOBERFEST</h4>
<p class="text-muted"></p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="https://mlh.io/" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<div class="text-center">
<img src="https://i.ytimg.com/vi/kUKgwX4bLyA/maxresdefault.jpg" class="img-responsive prog "
alt="">
</div>
</a>
<div class="portfolio-caption">
<h4>MLH</h4>
<p class="text-muted"></p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="https://www.outreachy.org/" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<div class="text-center">
<img src="https://pbs.twimg.com/profile_images/561419803202568194/Pjk5iqNn_400x400.png"
class="img-responsive prog " alt="">
</div>
</a>
<div class="portfolio-caption">
<h4>OUTREACHY</h4>
<p class="text-muted"></p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="https://kde.in/" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<div class="text-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/KDE_logo.svg/800px-KDE_logo.svg.png"
class="img-responsive prog " alt="">
</div>
</a>
<div class="portfolio-caption">
<h4>KDE</h4>
<p class="text-muted">.</p>
</div>
</div>
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="https://gssoc.girlscript.tech/" class="portfolio-link" data-toggle="modal">
<div class="portfolio-hover">
<div class="portfolio-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<div class="text-center">
<img src="https://gssoc.girlscript.tech/images/favicon/favicon.png"
class="img-responsive prog " alt="">
</div>
</a>
<div class="portfolio-caption">
<h4>GIRLSCRIPT</h4>
<p class="text-muted"></p>
</div>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section id="team" class="bg-light-gray" style="background:#df9ad9f1;">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Our Amazing Team</h2>
<h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/3.jpg" class="img-responsive img-circle animated infinite jello" alt="">
<h4 style="color:#6A2C70;">Aman Sarraf</h4>
<p class="text-muted">Lead Developer</p>
<ul class="list-inline social-buttons">
<li><a href="#" style="background-color:#1d9bf0;"><i class="fa fa-twitter"></i></a>
</li>
<li><a href="#" style="background-color: #0a66c2;"><i class="fa fa-linkedin-square"
aria-hidden="true"></i></a>
</li>
</li>
<li><a href="#" style="background-color:#161b22"><i class="fa fa-github"
aria-hidden="true"></i></a>
</li>
</ul>
<br>
<div class="text-center">
<p class="large text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut
eaque,
laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde.
</p>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/3.jpg" class="img-responsive img-circle animated infinite jello" alt="">
<h4 style="color:#6A2C70;">Aman Sarraf</h4>
<p class="text-muted">Lead Developer</p>
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/Aman81152043" style="background-color:#1d9bf0;"><i
class="fa fa-twitter"></i></a>
</li>
<li><a href="#" style="background-color: #0a66c2;"><i class="fa fa-linkedin-square"
aria-hidden="true"></i></a>
</li>
<li><a href="#" style="background-color:#161b22"><i class="fa fa-github"
aria-hidden="true"></i></a>
</li>
</ul>
<br>
<div class="text-center">
<p class="large text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut
eaque,
laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde.
</p>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="team-member">
<img src="img/team/3.jpg" class="img-responsive img-circle animated infinite jello" alt="">
<h4 style="color:#6A2C70;">Aman Sarraf</h4>
<p class="text-muted">Lead Developer</p>
<ul class="list-inline social-buttons">
<li><a href="#" style="background-color:#1d9bf0;"><i class="fa fa-twitter"></i></a>
</li>
<li><a href="#" style="background-color: #0a66c2;"><i class="fa fa-linkedin-square"
aria-hidden="true"></i></a>
</li>
<li><a href="#" style="background-color:#161b22"><i class="fa fa-github"
aria-hidden="true"></i></a>
</li>
</ul>
<br>
<div class="text-center">
<p class="large text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut
eaque,
laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Clients Aside -->
<aside class="clients" data-parallax="scroll" data-image-src="img/header-bg.jpg">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1 class="text-center" style="color: #6A2C70;">You are ready!</h1>
</div>
</div>
</div>
</aside>
<!-- Contact -->
<section id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Reach us </h2>
<h3 class="section-subheading text-muted"></h3>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<form name="sentMessage" id="contactForm" novalidate>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<input type="text" class="form-control" placeholder="Full Name *" id="name" required
data-validation-required-message="Please enter your name.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input type="email" class="form-control" placeholder="Your Email *" id="email"
required data-validation-required-message="Please enter your email address.">
<p class="help-block text-danger"></p>
</div>
<div class="form-group">
<input type="tel" class="form-control" placeholder="Your Phone *" id="phone"
required data-validation-required-message="Please enter your phone number.">
<p class="help-block text-danger"></p>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<textarea class="form-control" placeholder="Your Message *" id="message" required
data-validation-required-message="Please enter a message."></textarea>
<p class="help-block text-danger"></p>
</div>
</div>
<div class="clearfix"></div>
<div class="col-lg-12 text-center">
<div id="success"></div>
<button type="submit" class="btn btn-xl">Send Message</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- jQuery -->
<script src="vendor/jquery/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<!-- Contact Form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Parallex scripts-->
<script src="js/parallax.js"></script>
<!-- Theme JavaScript -->
<script src="js/agency.min.js"></script>
<!-- typed js -->
<script src="typed.js"></script>
</body>
</html>