-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.php
48 lines (44 loc) · 1.54 KB
/
contacts.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
<?php
include("db.php");
?>
<?php
include 'header.php';
?>
<link rel="stylesheet" href="css/transport.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<!-- <link href="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet"> -->
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<div class="bg-secondary rounded-0 text-white">
<div class="container p-3">
<div class="row justify-content-center">
<div class="col-sm-12">
<h3 class="fw-bold faculty-heading">CONTACTS</h3>
</div>
</div>
</div>
</div>
<section class="bg-grey p-3 mt-4" style="background-color:#fff !important; font-size: larger;">
<div class="row">
<div class="h-100">
<div class="d-flex justify-content-center">
School of Physical Sciences
</div>
<div class="d-flex justify-content-center">
Indian Institute of Technology Mandi,
</div>
<div class="d-flex justify-content-center">
Himachal Pradesh - 175005, INDIA
</div>
<div class="d-flex justify-content-center">
Telephone: +91-1905-267015
</div>
<div class="d-flex justify-content-center">
Fax: +91-1905-267015
</div>
</div>
</div>
</section>
<?php
include 'footer.php';
?>