-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcafeteria.php
87 lines (81 loc) · 2.83 KB
/
cafeteria.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
<?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">CAFETERIA</h3>
</div>
</div>
</div>
</div>
<section class="bg-grey p-3" style="background-color:#fff !important;">
<div class="row">
<div class="col-sm-10">
<br>
<p class="h5" style="color:blue;">South Campus</p>
<hr>
<p>
<ol>
<li>
<strong>Griffon Canteen:</strong>
<br>
M/s Nihal Udhyam
<br>
Bamboo Block, South Campus
<br>
Contact person Mr. Ashish Parmat - Contact no. 9816154265
<br>
Timings 09:00 am to 08:00 pm
<br>
</li>
<br>
<li>
<strong>4teen's - Confectionery Shop including fresh juice </strong>
<br>
Mr. Jay Narayan
<br>
D3 Mess, Ground Floor, South Campus
<br>
Contact Person Mr. Jay Narayan - Contact no. 9149787151
<br>
Timings 08:30 am to 09:30 pm (from 1st Jan, 2023 will open till 02:00 am)
<br>
</li>
</ol>
</p>
<br>
<p class="h5" style="color:blue;">North Campus</p>
<hr>
<p>
<ol>
<li>
<strong>Tragopan Canteen</strong>
<br>
M/s Lemon Chilly Food & Caterers
<br>
A-12 building, North Campus
<br>
Contact Person Mr. Munish Jha - 8430398682
<br>
Timings 09:00 am to 12:00 am
<br>
</li>
</ol>
</p>
<br>
</div>
</div>
</section>
<?php
include 'footer.php';
?>