HTML for Web Development

0% completed

Previous
Next
Quiz
Question 1
Which HTML tag is used to create an ordered (numbered) list?
A
<ul>
B
<ol>
C
<li>
D
<list>
Question 2
Which attribute can you use with an ordered list to change its numbering style (such as uppercase Roman numerals or letters)?
A
type
B
style
C
format
D
num
Question 3
Consider the following code. What does it create?
<ul>
  <li>Fruits
    <ul>
      <li>Apple</li>
      <li>Banana</li>
      <li>Cherry</li>
    </ul>
  </li>
  <li>Vegetables</li>
</ul>
A
Two separate unordered lists
B
Two ordered lists
C
An unordered list with a nested list under the "Fruits" item
D
A list with two items, where "Fruits" is a hyperlink

.....

.....

.....

Like the course? Get enrolled and start learning!
Previous
Next