-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathabout.php
59 lines (39 loc) · 1.58 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
<?php
// set the current page;
$nav_selected = "ABOUT";
// make the left menu buttons visible; options: YES, NO
$left_buttons = "NO";
// set the left menu button selected; options will change based on the main selection
$left_selected = "";
include("./nav.php");
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/main_style.css" type="text/css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="styles/custom_nav.css" type="text/css">
<title>Build Summary</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.12/css/dataTables.bootstrap.min.css" rel="stylesheet" />
</head>
<body class="body_background">
<h3 style = "color: #01B0F1;">Problem Solution</h3>
<h3 style = "color: #01B0F1;">About</h3>
<h3>Team</h3>
<p>
<ul>
<li>Siva Jasthi ([email protected]) </li>
<li>First Last ([email protected]) </li>
</ul>
</p>
</body>
</html>