-
Notifications
You must be signed in to change notification settings - Fork 4
/
boac.php
executable file
·152 lines (135 loc) · 3.57 KB
/
boac.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!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 Advisory Committee</span>
</div>
</div>
<!-- Breadcrumb section end -->
<!-- BOAC section -->
<section class="about-section spad pt-0">
<div class="container">
<div class="section-title text-center">
<h3>Board of Advisory Committee</h3>
<p>The committee</p>
</div>
<div class="row">
<div class="col-lg-6 course-item">
<div class="course-thumb">
<img src="img/about/boac/1.jpeg" alt="">
</div>
</div>
<div class="col-lg-6 course-item">
<div class="course-thumb">
<img src="img/about/boac/2.jpeg" alt="">
</div>
</div>
<div class="col-lg-6 course-item">
<div class="course-thumb">
<img src="img/about/boac/3.jpeg" alt="">
</div>
</div>
<div class="col-lg-6 course-item">
<div class="course-thumb">
<img src="img/about/boac/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</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Vice Chancellor</td>
<td>Chairperson</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Dr. Kumud Khanna <br>
(Experts nominated by Chairman, UGC)</td>
<td>Member</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Dr. Madhumita Roy <br>
(Experts nominated by Chairman, UGC)</td>
<td>Member</td>
</tr>
<tr>
<th scope="row">4</th>
<td>Dr. R. S. Sharma <br>
(Academician nominated by Honorable VC)</td>
<td>Member</td>
</tr>
<tr>
<th scope="row">5</th>
<td>Prof. Heena Zia <br>
(Academician nominated by Honorable VC)</td>
<td>Member</td>
</tr>
<tr>
<th scope="row">6</th>
<td>Dr. Shashi Rai <br>
(Nominee of State Higher Education Council)
</td>
<td>Member</td>
</tr>
<tr>
<th scope="row">7</th>
<td>Sweta Sharma Joshi <br>
(Representative of industries)</td>
<td>Member</td>
</tr>
<tr>
<th scope="row">8</th>
<td>Mr. Alok Dave <br>
(Representative of industries)</td>
<td>Member</td>
</tr>
<tr>
<th scope="row">9</th>
<td>Dr. Nikhil Kumar <br>
(UGC nominee)</td>
<td>Member</td>
</tr>
<tr>
<th scope="row">10</th>
<td>Director, DDU-KK</td>
<td>Member-secretary</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- BOAC 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>