Untitled
unknown
plain_text
a year ago
1.4 kB
7
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>List Example</title>
</head>
<body>
<h1 style="text-align: center;">List Example</h1>
<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 type="1">
<li>Nested item 2.1</li>
<li>Nested item 2.2
<ul>
<li>Nested item 2.2.1</li>
<li>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>Nested item 2.2.3</li>
</ul>
</li>
</ol>
</li>
<li>List Item 3
<ul>
<li>Nested item 3.1</li>
<li>Nested item 3.1</li>
<li>Nested item 3.1</li>
</ul>
</li>
</ol>
<p>COMP 249<br>
Object-Oriented Programming II.<br>
Soen287<br>
Web Programming.<br>
</p>
<p>This is a <sup>5</sup>test<sub>9</sub> for Assignment 1.</p>
</body>
</html>
Editor is loading...
Leave a Comment