-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.php
70 lines (54 loc) · 2.86 KB
/
about.php
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
<!DOCTYPE html>
<html lang="en">
<?php include "./components/Head.php" ?>
<body id="top" data-spy="scroll" data-target=".navbar-collapse" data-offset="50">
<!-- MENU -->
<?php include "./components/Navbar.php" ?>
<!-- ABOUT -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-12">
<div class="about-info">
<h2>Start your childes journey to a better life</h2>
<figure>
<span><i class="fa fa-users"></i></span>
<figcaption>
<h3>Huge Campus</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sint ipsa voluptatibus.</p>
</figcaption>
</figure>
<figure>
<span><i class="fa fa-certificate"></i></span>
<figcaption>
<h3>Mega Library</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sint ipsa voluptatibus.</p>
</figcaption>
</figure>
<figure>
<span><i class="fa fa-bar-chart-o"></i></span>
<figcaption>
<h3>Physical Training Camps</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sint ipsa voluptatibus.</p>
</figcaption>
</figure>
</div>
</div>
<div class="col-md-offset-1 col-md-4 col-sm-12">
<div class="entry-form">
<form action="#" method="post">
<h2>Get In Touch</h2>
<input type="text" name="full name" class="form-control" placeholder="Full name" required="">
<input type="email" name="email" class="form-control" placeholder="Your email address" required="">
<input type="password" name="password" class="form-control" placeholder="Your password" required="">
<button class="submit-btn form-control" id="form-submit">Get started</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- FOOTER -->
<?php include "./components/Footer.php" ?>
</body>
</html>