-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlists.html
More file actions
42 lines (39 loc) · 903 Bytes
/
lists.html
File metadata and controls
42 lines (39 loc) · 903 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
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>Lists</title>
</head>
<body>
BackEnd Basic Languages
<ul>
<li>Java</li>
<li>Python</li>
<li>PHP</li>
<li>C#</li>
</ul>
Pre Intern Course Outline
<ol>
<li>HTML & CSS</li>
<li>JavaScript</li>
<li>SQL</li>
<li>PHP</li>
<li>Adobe XD</li>
</ol>
Pre Intern Course Outline
<ol type="A">
<li>HTML & CSS</li>
<li>JavaScript</li>
<li>SQL</li>
<li>PHP</li>
<li>Adobe XD</li>
</ol>
Pre Intern Course Outline
<ol type="a">
<li>HTML & CSS</li>
<li>JavaScript</li>
<li>SQL</li>
<li>PHP</li>
<li>Adobe XD</li>
</ol>
</body>
</html>