-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathadvisory.php
50 lines (49 loc) · 3.89 KB
/
advisory.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
<div class="mx-auto md:ml-0 w-[90%] md:w-[300px]">
<ul class="space-y-2">
<li class="relative">
<button type="button"
class="hover:text-white focus:text-white w-full bg-gray-200 text-left pl-3 py-2 rounded-md font-medium hover:bg-gray-500 focus:outline-none focus:bg-gray-500"
onclick="toggleDropdown('international_dropdown')">
International Advisory Committee
</button>
<ul id="international_dropdown"
class="md:absolute left-full top-0 mt-2 mx-auto md:ml-2 w-[100%] md:w-[800px] bg-white rounded-md shadow-lg hidden text-left dropdown-menu open">
<li class="px-3 py-1"><strong>Dr. Ramona Lile</strong>, Aurel Vlaicu University of Arad, Romania</li>
<li class="px-3 py-1"><strong>Prof. Valentina Emilia Balas</strong>, Aurel Vlaicu University of Arad, Romania</li>
<li class="px-3 py-1"><strong>Prof. Xavier Fernando</strong>, Ryerson University, Canada</li>
<li class="px-3 py-1"><strong>Dr. Sophia Maggelakis</strong>, Provost and Executive Vice President for Academic Affairs, WIT </li>
<li class="px-3 py-1"><strong>Dr. Ali Khabari</strong>, Dean, School of Engineering, WIT </li>
<li class="px-3 py-1"><strong>Dr. En-Bing Lin</strong>, Associate Dean, SCDS, WIT</li>
<li class="px-3 py-1"><strong>Prof. Saraju Mohanty</strong>,University of North Texas</li>
<li class="px-3 py-1"><strong>Dr. Kiran Gulia</strong>, University of Wolverhampton, UK </li>
<li class="px-3 py-2"><strong>Prof. Linga Reddy Cenkeramddi</strong>, University of Agder, Norway</li>
<li class="px-3 py-2"><strong>Prof. Alok Prakash Mittal</strong>, AICTE and NSUT, New Delhi</li>
<li class="px-3 py-2"><strong>Prof. Chuan-Ming Liu</strong>, National Taipei University of Technology, Taiwan</li>
<li class="px-3 py-2"><strong>Prof. Ahmed A. Elngar</strong>, Beni-Suef University, Egypt</li>
</ul>
</li>
<li class="relative">
<button type="button"
class="hover:text-white focus:text-white w-full bg-gray-200 text-left pl-3 py-2 rounded-md font-medium hover:bg-gray-500 focus:outline-none focus:bg-gray-500"
onclick="toggleDropdown('national_dropdown')">
National Advisory Committee
</button>
<ul id="national_dropdown"
class="md:absolute left-full top-0 mt-2 mx-auto md:ml-2 w-[100%] md:w-[800px] bg-white rounded-md shadow-lg hidden text-left dropdown-menu open">
<li class="px-3 py-2"><strong>Prof. K.K. Aggarwal</strong>, Former VC, IP University, India</li>
<li class="px-3 py-2"><strong>Prof. Vineet Shaula</strong>, MNIT, Jaipur</li>
<li class="px-3 py-2"><strong>Prof. A. Q. Ansari</strong>, Jamia Millia Islamia, New Delhi</li>
<li class="px-3 py-2"><strong>Prof. Amit Prakash</strong>, GGSIPU, New Delhi</li>
<li class="px-3 py-2"><strong>Prof. Ashok De</strong>, DTU Delhi</li>
<li class="px-3 py-2"><strong>Prof. Amita Malik</strong>, DCRUST, Haryana</li>
<li class="px-3 py-2"><strong>Prof. Suresh Kumar</strong>, MRIU, Haryana</li>
<li class="px-3 py-2"><strong>Prof. Poonam Bansal</strong>, IGDTU, New Delhi</li>
<li class="px-3 py-2"><strong>Prof. Rajendra Singh</strong>, IIT Delhi</li>
<li class="px-3 py-2"><strong>Prof. Geetali Banerji</strong>, IITM</li>
<li class="px-3 py-2"><strong>Prof. Shyam Agrawal</strong>, KIIT Gurugram</li>
<li class="px-3 py-2"><strong>Prof. Narender Kumar</strong>, DTU, Delhi</li>
<li class="px-3 py-2"><strong>Prof. J.S Lather</strong>, NIT, Kurukshetra</li>
</ul>
</li>
</ul>
</div>