Search This Blog

HTML OL Tag With Type Attribute Example

HTML OL Tag With Type Attribute Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com </title>
</head>
<body>
<h2> OL Tag With Type Attribute Example </h2>

<ol type="I">
<li> item A </li>
<li> item B </li>
<li> item C </li>
</ol>

<ol type="a">
<li> item A </li>
<li> item B </li>
<li> item C </li>
</ol>

<ol type="1">
<li> item A </li>
<li> item B </li>
<li> item C </li>
</ol>

</body>
</html>
OUTPUT

No comments:

Post a Comment