forked from mwasif41/HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist_chap3.html
More file actions
39 lines (33 loc) · 842 Bytes
/
list_chap3.html
File metadata and controls
39 lines (33 loc) · 842 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
33
34
35
36
37
38
39
<!doctype html>
<html>
<head>
<title>CHAPTER # 3 LISTS</title>
</head>
<body>
<h1>BBC INSTITUTE</h1>
<hr>
<h3>Courses Offered</h3>
<hr>
<p>our soo called great institute offers the following courses</p>
<ol>
<li>
Ms Office
<ul>
<li>MS WORD</li>
<li>POWER POINT</li>
<li>MS EXCEL</li>
</ul>
</li>
<li>
JAVA
</li>
<li>PYTHON</li>
<li>Basic Web Development
<ul>
<li>HTML</li>
<li>CSS</li>
</ul>
</li>
</ol>
</body>
</html>