-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimp_contacts.php
117 lines (111 loc) · 3.76 KB
/
imp_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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?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">IMPORTANT CONTACTS</h3>
</div>
</div>
</div>
</div>
<section class="bg-grey p-3" style="background-color:#fff !important;">
<div class="row">
<div class="col-sm-10">
<ol>
<li>
<strong>Registrar</strong>
<br>
01905-267015
<br>
<br>
</li>
<br>
<li>
<strong>Main Security</strong>
<br>
01905-267126
<br>
<br>
</li>
<br>
<li>
<strong>Electrical Help</strong>
<br>
01905-267127
<br>
</li>
<br>
<li>
<strong>Construction & Maintenance Cell(Supt. Engineer)</strong>
<br>
01905-267020
<br>
</li>
<br>
<li>
<strong>Transportation</strong>
<br>
01905-267947
<br>
</li>
<br>
<li>
<strong>WING</strong>
<br>
01905-267030
<br>
</li>
<br>
<li>
<strong>Guest House(Manager)</strong>
<br>
01905-267846
<br>
</li>
<br>
<li>
<strong>Medical Centre Reception</strong>
<br>
01905-267849
<br>
</li>
<br>
<li>
<strong>Counselling Cell</strong>
<br>
01905-267008
<br>
</li>
<br>
</ol>
<p style="color : red;">
Emergency South Campus (Duty Security Supervisor-SC) - 6230864319
<br>
Emergency North Campus (Duty Security Supervisor-NC) - 7807964319
</p>
<a href="https://iitmandi.ac.in/directory/display.php" class="btn btn-primary" target="_blank" tabindex="-1" role="button" aria-disabled="true">IIT Mandi Directory</a>
</div>
</div>
</section>
<?php
include 'footer.php';
?>