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

What is the source code for Level 4 Lesson 4

<html>
<head>
<title>My Webpage Title</title>
</head>
<body>
<!-- List with a twist -->
<ol type ="A"; reversed>
<li>1</li>
<li>2</li>
<li>3</li>
</ol>
</body>
</html>
I tried this, and its running fine, but the system is not accepting it
by

1 Answer

sam5epi0l
Try this code:

<!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.