-
Notifications
You must be signed in to change notification settings - Fork 4
/
bos.php
executable file
·133 lines (118 loc) · 3.49 KB
/
bos.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<!-- Head -->
<head>
<?php include 'includes/head.php'; ?>
</head>
<body>
<!-- Page Preloder -->
<?php include 'includes/preloader.php'; ?>
<!-- Header -->
<?php include 'includes/header.php'; ?>
<!-- Navbar -->
<?php include 'includes/navbar.php'; ?>
<!-- Side Nav -->
<?php include 'includes/sidenav.php'; ?>
<!-- Breadcrumb section -->
<div class="site-breadcrumb">
<div class="container">
<a href="index.php"><i class="fa fa-home"></i> Home</a> <i class="fa fa-angle-right"></i>
<span>Board of Studies</span>
</div>
</div>
<!-- Breadcrumb section end -->
<!-- BOS section -->
<section class="about-section spad pt-0">
<div class="container">
<div class="section-title text-center">
<h3>Board of Studies</h3>
<p>The committee</p>
</div>
<div class="row">
<div class="col-lg-6 course-item">
<div class="course-thumb">
<img src="img/about/bos/1.jpeg" alt="">
</div>
</div>
<div class="col-lg-6 course-item">
<div class="course-thumb">
<img src="img/about/bos/2.jpeg" alt="">
</div>
</div>
<div class="col-lg-6 course-item">
<div class="course-thumb">
<img src="img/about/bos/3.jpeg" alt="">
</div>
</div>
<div class="col-lg-6 course-item">
<div class="course-thumb">
<img src="img/about/bos/4.jpeg" alt="">
</div>
</div>
</div>
<div class="row table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th scope="col">S.No.</th>
<th scope="col">Name</th>
<th scope="col">Designation & Address</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Dr. Maya Ingle</td>
<td>Director, Deen Dayal Upadhyay Kaushal Kendra DAVV, Indore- 452001
</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Mr. Tariq Abbassi</td>
<td>Co-Chairperson (Industry Partner) Jet Airways (India) Limited G-2, Vidyapati Bhawan, 17 Race Course Road, Indore
</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Dr. Manish Sitlani</td>
<td>Associate Professor IIPS , DAVV, Indore.
</td>
</tr>
<tr>
<th scope="row">4</th>
<td>Mr. Ranjeet Singh Gadvi</td>
<td>Director I2I (Inception to Implementation) AH -52 , Sr. HIG, Sukhliya , Indore- 452010
</td>
</tr>
<tr>
<th scope="row">5</th>
<td>Mr. Sachin Karvade</td>
<td>Senior. Manager( Sales) Touristics Union International (TUI), 117, Shree Nagar Extension, Near Amar Apartment, Opposite Water Tank, Khajrana Road, Indore-452018.
</td>
</tr>
<tr>
<th scope="row">6</th>
<td>Ms.Teshy</td>
<td>Manager Operations FedEx Express, Sarover, 4/3 New Palasia, Opp. Manpasand Garden, Indore.
</td>
</tr>
<tr>
<th scope="row">7</th>
<td>Mr. Atul Goyal</td>
<td>Assistant Manager Thomas Cook India ltd. Vijay Nagar- Branch, In front of Landmark Fortune Hotel, Vijay Nagar - Indore.
</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- BOS section end-->
<!-- Footer section -->
<?php include 'includes/footer.php'; ?>
<!-- Back 2 Top -->
<?php include 'includes/back2Top.php'; ?>
<!--====== Javascripts & Jquery ======-->
<?php include 'includes/javascripts.php'; ?>
</body>
</html>