-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
33 lines (23 loc) · 1.07 KB
/
about.php
File metadata and controls
33 lines (23 loc) · 1.07 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
<?php include('includes/header.php');?>
<body>
<?php include('includes/menubar.php');?>
<div class="container-xxl py-5 bg-dark hero-header mb-5">
<div class="container text-center my-5 pt-5 pb-4">
<h1 class="display-3 text-white mb-3 animated slideInDown">About Us</h1>
<nav aria-label="breadcrumb">
<ol class="breadcrumb justify-content-center text-uppercase">
<li class="breadcrumb-item"><a href="#">Home</a></li>
<li class="breadcrumb-item"><a href="#">Pages</a></li>
<li class="breadcrumb-item text-white active" aria-current="page">About</li>
</ol>
</nav>
</div>
</div>
</div>
<!-- Navbar & Hero End -->
<?php include('assets/about.php');?>
<!-- Team Start -->
<?php include('assets/team.php');?>
<!-- Team End -->
<!-- Footer Start -->
<?php include('includes/footer.php');?>