-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
37 lines (30 loc) · 981 Bytes
/
about.html
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>David Kent Group</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-1"></div>
<div class="col-md-10">
<ul class="nav nav-pills" style="padding:1.0em">
<li><a href="homepage.html">Home</a></li>
<li><a href="recent_projects.html">Recent Projects</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="about.html">About</a></li>
</div>
<div class="jumbotron">
<h1>About</h1>
<p>This website was created by Team Sulu.</p>
</div>
</div>
</ul>
</div>
</body>
</html>