-
Notifications
You must be signed in to change notification settings - Fork 4
/
about.php
36 lines (27 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<title>BAUST Online</title>
<link href="https://fonts.googleapis.com/css?family=Work+Sans:300">
<link rel="stylesheet" type="text/css" href="css/styles.css" />
</head>
<body>
<?php $active_page = 'about'; include('includes/header.php'); ?>
<div class="cover">
<div class="title">
<h1>ABOUT BAUST ONLINE</h1>
</div>
</div>
<div class="content">
<h2>Enjoy The Online Services</h2>
<p>This website provides <em>Online Services</em> for the <em>Teachers & Students</em> of <em>BAUST</em> such as
Online Class Routine, Upcoming CTs, CT Results, Attendance, Important Announcements from Class
Representative (CR) / Teachers, Study Materials etc.</p>
<p>User must have to register & log in to the website to enjoy the online services. Why are you waiting? Join
now!</p>
<center><a href="login.php" class="button1">Login</a> or <a href="signup_student.php" class="button2">Signup</a>
</center>
</div>
<?php include('includes/footer.php'); ?>
</body>
</html>