HTML Quiz Lists, Bold, Italic Updated 3
- 1. What is the container tag used to make the text underlined in a webpage?
- 2. What is the opening tag used to make the text underlined in a webpage?
- 3. These refers to lists where each item in the list is numbered.
A) Order lists B) Definition lists C) Ordered lists D) Unordered lists
- 4. A type of lists appropriate to the set of steps for a recipe that must be performed in order.
A) Definition lists B) Ordered lists C) Unordered lists D) Order lists
- 5. A type of lists appropriate to a legal contract where each point needs to be identified by a section number.
A) Ordered lists B) Unordered lists C) Definition lists D) Order lists
- 6. These are lists that begin with a bullet point.
A) Ordered lists B) Inordered lists C) Definition lists D) Unordered lists
- 7. These are type of lists made up of a set of terms along with the definitions for each of those terms.
A) Ordered lists B) Unordered lists C) Definition lists D) Inordered lists
- 8. These are type of list is created with
the <ol> element.
A) Unordered lists B) Ordered lists C) Inordered lists D) Definition lists
- 9. <ul>
<li>1kg King Edward potatoes</li> <li>100ml milk</li> </ul>
What type of lists is shown above?
A) Unordered list B) Unordered lists
- 10. <ol>
<li>Chop potatoes into quarters</li> <li>Drain potatoes and mash</li> <li>Mix in the milk mixture</li> </ol>
What type of lists is shown above?
A) Ordered lists B) Ordered list
- 11. These are type of list that are created with the <dl> element and usually consists of a series of terms and their definitions.
A) definition list B) definition lists
- 12. These are type of lists made up of a set of terms along with the definitions for each of those terms.
A) definition lists B) definition list
- 13. These are type of list created with
the <ol> element.
A) Ordered lists B) Ordered list
- 14. These are lists that begin with a bullet point.
A) Unordered list B) Unordered lists
- 15. What is the container tag used to contain the term being defined?
- 16. What is the container tag used to contain the definition?
- 17. What is the container tag used to create a definition list?
- 18. What is the container tag used to create an ordered list?
- 19. What is the container tag used to create an Unordered list?
- 20. What is the closing tag used to create an ordered list?
- 21. What is the closing tag used to create an Unordered list?
- 22. <ol>
<li>Chop potatoes into quarters</li> <li>Drain potatoes and mash</li> <li>Mix in the milk mixture</li> </ol>
What type of lists is shown above?
A) Ordered list B) Ordered lists
- 23. <dl>
<dt>Sashimi</dt> <dd>Sliced raw fish that is served with condiments such as shredded daikon radish or ginger root, wasabi and soy sauce</dd>
What is the missing tag in the html code above?
- 24. <ul>
<li>1kg King Edward potatoes</li> <li>100ml milk</li>
What is the missing code in the html file above?
- 25. <ol>
<li>Chop potatoes into quarters</li> <li>Drain potatoes and mash</li>
What is the missing tag in the html code above?
- 26. <li>Chop potatoes into quarters</li>
<li>Drain potatoes and mash</li> </ol>
What is the missing tag in the html code above?
- 27. <li>1kg King Edward potatoes</li>
<li>100ml milk</li> </ul>
What is the missing tag in the html code above?
- 28. <dl>
<dt>Sashimi</dt> <dd>Sliced raw fish that is served with condiments such as shredded daikon radish or ginger root, wasabi and soy sauce</dd>
What is the missing tag in the html code above?
- 29. <dl>
<dt>Sashimi <dd>Sliced raw fish that is served with condiments such as shredded daikon radish or ginger root, wasabi and soy sauce</dd> </dl>
What is the missing tag in the html code above?
- 30. <dl>
<dt>Sashimi</dt> <dd>Sliced raw fish that is served with condiments such as shredded daikon radish or ginger root, wasabi and soy sauce </dl>
What is the missing tag in the html code above?
- 31. <ul>
<li>2 eggs</li> <li>1tbs butter</li> <li>2tbs cream</li> </ul>
What type of lists is shown above?
A) Unordered list B) Unordered lists
- 32. <ol>
<li>Melt butter in a frying pan over a medium heat</li> <li>Gently mix the eggs and cream in a bowl</li> </ol>
What type of lists is shown above?
A) Ordered list B) Ordered lists
- 33. Each item in the Unordered list is placed between an opening <ul> tag
and a closing </ul> tag.
A) True B) False
- 34. <dl>
<dt>Sashimi <dd>Sliced raw fish that is served with condiments such as shredded daikon radish or ginger root, wasabi and soy sauce</dd> </dl>
What is the missing tag in the html code above?
- 35. <ul>
<li>1kg King Edward potatoes</li> <li>100ml milk </ul>
What is the missing tag in the html code above?
- 36. <ol>
<li>Chop potatoes into quarters</li> <li>Drain potatoes and mash</li>
What is the missing tag in the html code above?
- 37. <ol>
<li>Chop potatoes into quarters</li> <li>Drain potatoes and mash</li> Mix in the milk mixture</li> </ol>
What is the missing tag in the html code above?
|