-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
37 lines (34 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<br>
<img src = "images/design2.png" alt = "banner">
<div class="row">
<div class="col-lg-12">
<nav class="navbar navbar-default">
<ul class="nav nav-tabs nav-justified">
<li ><a href="index.php">Home</a> </li>
<li ><a href="guide.php">Guide</a> </li>
<li class="active"><a href="about.php">About</a> </li>
</ul>
</nav>
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center well well-lg">
<h4><strong>Project Ethical Approval System</strong> <br> Copyright(c) 2018</h4>
</div>
</div>
</div>
</div>
</body>
</html>