-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.html
More file actions
32 lines (32 loc) · 768 Bytes
/
Copy pathlist.html
File metadata and controls
32 lines (32 loc) · 768 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h4>3. Display an ordered list inside an unordered list.</h4>
<ul>Engineering Branches & Courses
<li>CSE</li>
<ol>
<li>Java</li>
<li>Python</li>
<li>DS</li>
</ol>
<li>ECE</li>
<ol>
<li>C</li>
<li>LCD</li>
<li>MPMC</li>
</ol>
<li>ME</li>
<ol>
<li>Graphics</li>
<li>Maths</li>
<li>MOS</li>
</ol>
</ul>
</body>
</html>