-
Notifications
You must be signed in to change notification settings - Fork 0
/
course.php
32 lines (30 loc) · 866 Bytes
/
course.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
<?php
include "header.php";
?>
<div class="course container" style="padding-top: 200px; padding-bottom: 200px;">
<div class="row">
<div class="col-md-12">
<h1 style="text-align: center;color: black">Courses</h1>
</div>
</div>
<div class="row">
<div class="col-md-4">
<img src="image/emile-perron-xrVDYZRGdw4-unsplash.jpg" style="width: 300px;">
<a href="bsc.php"><h3 style="color: black">*BSc Engg</h3></a>
<p></p>
</div>
<div class="col-md-4">
<img src="image/lagos-techie-kwzWjTnDPLk-unsplash.jpg" style="width: 300px;">
<h3 style="color: black" style="color: black">*MSc Engg</h3>
<p></p>
</div>
<div class="col-md-4">
<img src="image/thisisengineering-raeng-ZPeXrWxOjRQ-unsplash.jpg" style="width: 300px;">
<h3 style="color: black">*Phd Engg</h3>
<p></p>
</div>
</div>
</div>
<?php
include "footer.php";
?>