Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

I am unable to clear lesson 4 : level 4 html basics.

<ol reversed type="A" >
I typed this in my body tag but it says please add a valid value to type tag.
by

1 Answer

kshitijrana14
Try this one

<!doctype html>
<html>
<head>
<title>My Webpage Title</title>
</head>
<body>
<li><ol reversed type="a">456</ol></li>
<li><ol>234</ol></li>
<li><ol>123</ol></li>


</body>
</html>

Login / Signup to Answer the Question.