-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.php
47 lines (47 loc) · 1.63 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
<?php $title = "About" ?>
<?php include "includes/components/header.php" ?>
<!-- Responsive navbar-->
<?php include "includes/components/navbar.php" ?>
<!-- Page Content-->
<section class="pt-4">
<div style="text-align: center;" class="row">
<div class="container px-lg-5">
<h2><strong>Project Lead</strong></h2>
<img src="images/resources/sadia.jpg" width="300px" alt="">
<br>
<h4>Sadia Ahmmed</h4>
</div>
</div>
<br>
<hr>
<br>
<div class="container px-lg-5">
<!-- Page Features-->
<div class="row gx-lg-5">
<div class="col-lg-6">
<div class="card bg-light border-0 h-100">
<div style="text-align: center;" class="container px-lg-5">
<h2><strong>Backend Lead</strong></h2>
<img src="images/resources/Jishan_suit.jpg" width="300px" alt="">
<br>
<h4>S M Jishanul Islam</h4>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card bg-light border-0 h-100">
<div style="text-align: center;" class="container px-lg-5">
<h2><strong>Frontend Lead</strong></h2>
<img src="images/resources/mysun.jpg" width="300px" alt="">
<br>
<h4>Mysun Mashira</h4>
</div>
</div>
</div>
</div>
</div>
</section>
<br>
<br>
<!-- Footer-->
<?php include "includes/components/footer.php" ?>