-
Notifications
You must be signed in to change notification settings - Fork 2
/
tracks.php
116 lines (108 loc) · 6.33 KB
/
tracks.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
<div id="tracks">
<div class="w-full" >
<div class=' bg-white pt-12 md:px-[10%]'>
<div class='pt-16'>
<h1 class='text-[#c00000] text-center text-3xl font-[600]'>TRACKS</h1>
<div class='w-[100px] h-[2px] mx-auto mt-2 bg-[#365372] rounded-xl mb-8'></div>
</div>
<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('track1')">
Track I: Evolutionary Algorithms
</button>
<ul id="track1"
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">● Agent Based Systems</li>
<li class="px-3 py-1">● Optimization Techniques</li>
<li class="px-3 py-1">● AI Algorithms</li>
<li class="px-3 py-1">● Heuristic & AI Planning Strategies </li>
<li class="px-3 py-1">● Interactive Genetic Algorithms</li>
<li class="px-3 py-1">● Genetic Programming</li>
<li class="px-3 py-1">● Bi-level and Multi-level Optimization</li>
<li class="px-3 py-1">● Ensemble based Genetic Algorithms</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('track2')">
Track II: Deep AI & Neural Networks
</button>
<ul id="track2"
class="md:absolute left-full top-0 mt-2 ml-2 w-[400px] md:w-[800px] bg-white rounded-md shadow-lg hidden text-left dropdown-menu open">
<li class="px-3 py-1">● Machine Learning</li>
<li class="px-3 py-1">● Deep Learning</li>
<li class="px-3 py-1">● Big Data Analytics</li>
<li class="px-3 py-1">● CNN</li>
<li class="px-3 py-1">● Computer Vision</li>
<li class="px-3 py-1">● Speech Recognition</li>
<li class="px-3 py-1">● Cybersecurity</li>
<li class="px-3 py-1">● Mining and Exploratory Analysis</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('track3')">
Track III: AI for IoT Applications
</button>
<ul id="track3"
class="md:absolute left-full top-0 mt-2 ml-2 w-[400px] md:w-[800px] bg-white rounded-md shadow-lg hidden text-left dropdown-menu open">
<li class="px-3 py-1">● IoT Design and Implementations</li>
<li class="px-3 py-1">● Big Data in IoT</li>
<li class="px-3 py-1">● Cloud & IoT</li>
<li class="px-3 py-1">● IoT Applications</li>
<li class="px-3 py-1">● IoT Enabled Innovation & Entrepreneurship</li>
<li class="px-3 py-1">● Security and Privacy</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('track4')">
Track IV: Robotics & AI
</button>
<ul id="track4"
class="md:absolute left-full top-0 mt-2 ml-2 w-[400px] md:w-[800px] bg-white rounded-md shadow-lg hidden text-left dropdown-menu open">
<li class="px-3 py-1">● Automation Science and Engineering</li>
<li class="px-3 py-1">● Robust Control</li>
<li class="px-3 py-1">● Sensor Network Systems</li>
<li class="px-3 py-1">● Man, Machine Interaction</li>
<li class="px-3 py-1">● Robotics Science and Engineering</li>
<li class="px-3 py-1">● Robot Sensing and Data Fusion</li>
<li class="px-3 py-1">● Vision Science and Engineering</li>
<li class="px-3 py-1">● Robotics IoT Embedded Systems</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('track5')">
Track V: Knowledge Representation
</button>
<ul id="track5"
class="md:absolute left-full top-0 mt-2 ml-2 w-[400px] md:w-[800px] bg-white rounded-md shadow-lg hidden text-left dropdown-menu open">
<li class="px-3 py-1">● Web Intelligence Applications and Search</li>
<li class="px-3 py-1">● Semantic Web Techniques and Technologies</li>
<li class="px-3 py-1">● Information Retrieval</li>
<li class="px-3 py-1">● Connectivity and Networking</li>
<li class="px-3 py-1">● Ontology</li>
<li class="px-3 py-1">● Reasoning about Knowledge and Belief</li>
</ul>
</li>
<li class="relative">
<a target="#" href="https://docs.google.com/document/d/1zShaqjFyPai3d6K4WKnidoZunTv1PLJO/edit?usp=sharing&ouid=112522389039078498512&rtpof=true&sd=true">
<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 text-[700] hover:bg-gray-500 focus:outline-none focus:bg-gray-500" >
<span class="font-[900]">SPECIAL SESSION PROPOSAL</span>
</button>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>