-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
30 lines (27 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title> Hospital Compare Redux - About us</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='http://fonts.googleapis.com/css?family=Bree+Serif|Merriweather|Merriweather+Sans' rel='stylesheet' type='text/css'>
<link href="_/css/bootstrap.css" rel="stylesheet" media="screen">
<link href="_/css/mystyle.css" rel="stylesheet" media="screen">
</head>
<body id="about">
<section class="container">
<?php include "_/components/php/header.php"; ?>
<div class="content row">
<section class ="main col col-lg-8">
<h2>Main Navigation</h2>
</section><!-- main navigation -->
<section class ="main col col-lg-4">
<h2>Side Navigation</h2>
</section><!-- side navigation -->
</div>
<?php include "_/components/php/footer.php"; ?>
</section><!-- containers -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<script src="_/js/bootstrap.js"></script>
<script src="_/js/myscript.js"></script>
</body>
</html>