Tables and lists1.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tables and lists</title>
</head>
<body>
<ul>
<li>This is the first item of my unorederd list</li>
<li>This is the Second item of my unorederd list</li>
<li>This is the Third item of my unorederd list</li>
</ul>
<ol type="I">
<li>This is the first item of my unorederd list</li>
<li>This is the Second item of my unorederd list</li>
<li>This is the Third item of my unorederd list</li>
</ol>
</body>
</html>
Comments
Post a Comment