forked from mentorchita/Blood-Bank-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
68 lines (54 loc) · 2.12 KB
/
contact.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
61
62
63
64
65
66
67
68
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<?php $title="Bloodbank | About page"; ?>
<?php require 'head.php'; ?>
<head>
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">Blood Bank</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="main.php">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.php">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.php">Contact</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="index.php">Login/Register<span class="sr-only">(current)</span></a>
</li>
</ul>
</div>
</nav>
<div class="jumbotron">
<h1>Anytime!</h1>
<p>We are always here to help you!</p>
</div>
<section class="my-5">
<div class="py-5">
<h2 class="text-center">Contact Us</h2>
</div>
<div>
<p class="text-center bg-dark text-white">Chandana GV - +91-9902477354, [email protected]<br>Rithish Reddy - +91-9380073437, [email protected]<br>Jasti SriHarsha - +91-9110342158, [email protected]<br>Balaji Subhash - +91-7036739735, [email protected]<br>Bhaskar SaiRam - +91-8374827408, [email protected]
</p>
<a href="contact.php"> </a>
</div>
</section>
<?php require 'footer.php'; ?>
</body>
</html>