-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathabout.php
More file actions
32 lines (31 loc) · 1.25 KB
/
about.php
File metadata and controls
32 lines (31 loc) · 1.25 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About us</title>
<link rel="stylesheet" type="text/css" href="css/about.css">
<?php include_once 'includes/head.php' ?>
</head>
<body>
<div>
<img id="img2" src="images/team.png" width="750px" style="position: absolute; position: fixed; z-index: 1; margin-left: 50%; margin-top: 10vh;">
</div>
<img src="images/aboutbg.png" id="img1">
<?php include_once 'includes/nav.php' ?>
<div class="content" style="margin-top: 110px; margin-left: 60px; width: 400px;">
<h3>About Us</h3>
<p class="lead"><b>Placement Management System</b> is an application mainly developed for the college to add and maintain companies
that are available for campus drive in their college. And to maintain the record of the students who have got selected for companies
in the campus drive.</p>
</div>
<?php include_once 'includes/footer.php' ?>
<script>
$(document).ready(function() {
$("#home").removeClass("active");
$("#about").addClass("active");
});
</script>
</body>
</html>