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

Html level 4 lesson 4 correct answer but shows error

this is the question
1. Create an Ordered list with 3 list items.
2. Use the reversed attribute to reverse the order of list.
3. Then use the type attribute to change the marking from numbers to Alphabets.
4. Please maintain the order, include the type attribute after the reversed attribute, inside the opening ol tag.

my HTML answer
<!doctype html>
<html>
<head>
<title>My Webpage Title</title>
</head>
<body>
<ol reversed start="7" type="a">

<li>tube</li>
<li>type</li>
<li>kite</li>
</ol>

</body>
</html>
by

1 Answer

kshitijrana14
Try this one

<!doctype html>
<html>
<head>
<title>My Webpage Title</title>
</head>
<body>
<ol reversed type="A">
<li>Apple</li>
<li>Bag</li>
<li>Cat</li>
</ol>

</body>
</html>

Login / Signup to Answer the Question.