-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnestedList.html
More file actions
40 lines (40 loc) · 1.35 KB
/
Copy pathnestedList.html
File metadata and controls
40 lines (40 loc) · 1.35 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Question1</title>
</head>
<body>
<p>COURSES IN SJECT, PALAI</p>
<ul>
<li>BTech</li>
<ol>
<li>Artificial Intelligence and Data Science</li>
<li>Civil Engineering</li>
<li>Computer Science & Engineering</li>
<li>Electronics and Communication Engineering</li>
<li>Electrical and Electronics Engineering</li>
<li>Mechanical Engineering</li>
</ol>
<li>MTech</li>
<ol>
<li>Artificial Intelligence and Data Science</li>
<li>Civil Engineering</li>
<li>Computer Science & Engineering</li>
<li>Electronics and Communication Engineering</li>
<li>Electrical and Electronics Engineering</li>
<li>Mechanical Engineering</li>
</ol>
<li>Phd</li>
<ol>
<li>Artificial Intelligence and Data Science</li>
<li>Computer Science and Engineering</li>
<li>Mechanical Engineering</li>
</ol>
<li>MBA</li>
<ol>
<li>Normal MBA</li>
<li>Super MBA</li>
</ol>
</ul>
</body>
</html>