-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
57 lines (55 loc) · 2.12 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
<?php
include ("includes/header.php");
include ("includes/config.php");
include ("includes/functions.php");
?>
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<style>
#bgimg
{
width: auto;
height: auto;
background-image: linear-gradient(#0040ff ,#00c0ff);
}
</style>
</head>
<body id="bgimg">
<?php include 'menu.php';?>
<h2 class="text-white text-center">About Us</h2>
<br><br><br>
<p class="font-weight-bold text-center text-white text-uppercase">saving life == donate blood</p>
<div class="text-white font-weight-bold">
<p>Located in: VIT CHENNAI</p>
<p>Address: Vandalur-Kelambakkam Road, Rajan Nagar, Chennai, Tamil Nadu 600127</p>
<p>Working Hours:</p>
<p>Sunday Closed</p>
<p>Monday 10am–6:30pm</p>
<p>Tuesday 10am–6:30pm</p>
<p>Wednesday 10am–6:30pm</p>
<p>Thursday 10am–6:30pm</p>
<p>Friday 10am–6:30pm</p>
<p>Saturday Closed</p>
<p>Phone: +91 44 3993 1555</p>
<p>Email: [email protected]</p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<script src="content/js/jquery.min.js"></script>
<script src="content/js/bootstrap.min.js"></script>
<script>
$(document).ready(function () {
$('.dropdown-toggle').dropdown();
});
</script>
</body>
</html>