Lists quiz
In which of the following does the HTML code result? <ol type=a> <li>Line 1</li> <li>Line 2</li> <li>Line 3</li> </ol>
a. Line 1 b. Line 2 c. Line3
The <ul> tag is used to create which of the following?
bulleted list
In the tag <ul>, what does the ul stand for?
unordered list
In which of the following does the HTML code result? <ul type=disc> <li>Line 1</li> <li>Line 2</li> <li>Line 3</li> </ul>
. Line 1 . Line 2 . Line 3
In which of the following does the HTML code result? <ol type=1> <li>Line 1</li> <li>Line 2</li> <li>Line 3</li> </ol>
1. Line 1 2. Line 2 3. Line 3
In the following HTML, what is the second item in the list? <ul type=circle> <li>566</li> <li>221</li> <li>384</li> <li>619</li> </ul>
221
Which HTML tag belongs in the blank in the code? <html> <head> <title>List</title> </head> <body> <ol type=1> <li>Line 1</li> <li>Line 2</li> <li>Line 3</li> ___________ </body> </html>
</ol>
Which HTML tag belongs in the blank in the code? <html> <head> <title>List</title> </head> <body> <ol type=1> <li>Line 1</li> <li>Line 2</li> <li>Line 3</li> _________ </body> </html>
</ol>
Which HTML tag belongs in the blank in the code? <html> <head> <title>List</title> </head> <body> <ul type=disc> <li>Line 1</li> <li>Line 2</li> <li>Line 3</li> _________ </body> </html>
</ul>
In the following HTML, what is the third item in the list? <ul type=circle> <li>Milk</li> <li>Bread</li> <li>Apples</li> <li>Peas</li> </ul>
Apples