-
Notifications
You must be signed in to change notification settings - Fork 244
/
Copy pathJimmyCalderon6.html
44 lines (44 loc) · 1.3 KB
/
JimmyCalderon6.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ejercicio 2A</title>
</head>
<body>
<p>Preceding Text</p>
<ol type="I">
<li>List Item 1
<ol type="a">
<li>Nested Item 1.1</li>
<li>Nested Item 1.2</li>
</ol>
</li>
<li>List Item 2
<ol>
<li>Nested Item 2.1</li>
<li>Nested Item 2.2
<ul>
<li type="circle">Nested Item 2.2.1</li>
<li type="circle">Nested Item 2.2.2
<ul>
<li>Nested Item 2.2.2.1</li>
<li>Nested Item 2.2.2.2</li>
</ul>
</li>
<li type="circle">Nested Item 2.2.3</li>
</ul>
</li>
<li>Nested Item 2.3</li>
</ol>
</li>
<li>List Item 3
<ul>
<li type="disc">Nested Item 3.1</li>
<li type="disc">Nested Item 3.1</li>
<li type="disc">Nested Item 3.1</li>
</ul>
</li>
</ol>
</body>
</html>