-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.php
60 lines (50 loc) · 2.1 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
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>About</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<link rel="stylesheet" type="text/css" href="loginStyle.css">
</head>
<body>
<h1 align="center">Information Application</h1>
<h1 style="margin: 3.25% 0 3.25% 0">About Us</h1>
<hr> <!-- line -->
<nav class="navbar navbar-default navbar-static-top">
<div class="conainer-fluid">
<div>
<ul class="nav navbar-nav">
<li><a href="firstContent.php">Home</a></li>
<li><a href="forms.php">Forms</a></li>
<li class="active"><a href="about.php">About</a></li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div id=col1 class="col-md-3" style="background-color: white">Info about author</div>
<div id=fill class="col-md-1"></div>
<div id=col2 class="col-md-8" style="background-color: white;padding-bottom: 264px;">
<p align="center">Vincent DiRienzo, Leon Qu, Samuel Park</p>
<p align="center">aRealEmail491@yahoo.com</p>
<p align="center">(808)-123-4567</p>
</div>
</div>
</div>
<div class="row">
<div id=footer class="col-md-11" style="background-color: gainsboro; height: 50px">(C) Zeta 2016</div>
<div class="col-md-1"></div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<!-- Include all compiled plugins (below), or include individual files as needed -->
<!-- <script src="js/bootstrap.min.js"></script> -->
</body>
</html>