ThatQuiz Test Library Take this test now
HTML Quiz Lists, Bold, Italic Updated
Contributed by: GhostCore
  • 1. What is the closing tag that is responsible for making the text bold in HTML?
A) </b>
B) </strong>
  • 2. What is the opening tag that is responsible for making the text bold in HTML?
A) <b>
B) <strong>
  • 3. What is the closing tag that is used for inserting the smallest heading in HTML?
  • 4. What is the opening tag that is used for inserting the largest heading in HTML?
  • 5. What is the opening tag that is used for inserting the smallest heading in HTML?
  • 6. How do we write the html elements such that 'Agusan del Sur NHS' will appear in bold format in a webpage?
A) <b>Agusan del Sur NHS</b>
B) <strong>Agusan del Sur NHS</strong>
  • 7. What is the tag used to insert a line-break in HTML?
A) <br>
B) <br />
  • 8. How do we write the html elements such that 'Agusan del Sur NHS' will appear in italic format in a webpage?
A) <i>Agusan del Sur NHS</i>
B) <em>Agusan del Sur NHS</em>
  • 9. What character is used to represent the closing of a tag in HTML?
  • 10. What is the closing tag used to make the text underlined in a webpage?
  • 11. What is the opening tag used to make the text underlined in a webpage?
  • 12. How do we write the html elements such that 'Agusan del Sur NHS' will appear in underline format in a webpage?
  • 13. What is the closing tag used to create a paragraph in a webpage?
  • 14. What is the opening tag used to create a paragraph in a webpage?
  • 15. An HTML program is saved by using the ____ extension.
A) .html
B) html
  • 16. What is the filename extension of an HTML file?
  • 17. What is the opening tag used to display the power in expression, i.e., (x2 - y2)?
  • 18. How do we write the HTML element such that the word 'character' will appear as bold in a webpage?
A) <strong>character</strong>
B) <b>character</b>
  • 19. How do we write the HTML element such that the word 'beautiful' will appear as bold in the webpage?
A) <strong>beautiful</strong>
B) <b>beautiful</b>
  • 20. How do we write the HTML tag such that the word 'underline' will appear as underline in the webpage?
  • 21. How do we write the HTML tag such that the word 'italic' will appear as italic in the webpage?
A) <i>italic</i>
B) <em>italic</em>
  • 22. What is the closing tag that is used for inserting the smallest heading in HTML?
  • 23. What is the closing tag that is used for inserting the largest heading in HTML?
  • 24. What is the opening tag that tells the browser where the page starts?
  • 25. What is the closing tag that tells the browser where the page stops?
  • 26. How do we write the html element such that 'Agusan del Sur NHS' will appear as the largest heading in a webpage?
  • 27. How do we write the html element such that 'Agusan del Sur National High School' will appear as the smallest heading in a webpage?
  • 28. How do we write the html element such that 'Our Best Always' will appear as a paragraph in a webpage?
  • 29. How do we write the html element such that 'Agusan del Sur NHS' will appear as a paragraph in a webpage?
  • 30. How do we write the html element such that 'Agusan del Sur NHS' will appear as the smallest heading in a webpage?
  • 31. How do we write the html element such that 'Our Best Always' will appear as the largest heading in a webpage?
  • 32. These refers to lists where each item in the list is numbered.
A) Definition lists
B) Ordered lists
C) Order lists
D) Unordered lists
  • 33. A type of lists appropriate to the set of steps for a recipe that must be performed in order.
A) Order lists
B) Definition lists
C) Ordered lists
D) Unordered lists
  • 34. A type of lists appropriate to a legal contract where each point needs to be identified by a section number.
A) Unordered lists
B) Order lists
C) Definition lists
D) Ordered lists
  • 35. These are lists that begin with a bullet point.
A) Unordered lists
B) Definition lists
C) Ordered lists
D) Inordered lists
  • 36. 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) Ordered lists
C) Unordered lists
D) Inordered lists
  • 37. These are type of list is created with
    the <ol> element.
A) Inordered lists
B) Definition lists
C) Ordered lists
D) Unordered lists
  • 38. Each item in the list is placed between an opening <li> tag and a closing </li> tag.
A) False
B) True
  • 39. Each item in the list is placed between an opening <ol> tag and a closing </ol> tag.
A) True
B) False
  • 40. Browsers indent lists by default.
A) True
B) False
  • 41. <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
  • 42. <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
  • 43. These are type of list is created with the <dl> element and usually consists of a series of terms and their definitions.
A) definition lists
B) definition list
  • 44. These are type of lists made up of a set of terms along with the definitions for each of those terms.
A) definition list
B) definition lists
  • 45. These are type of list is created with
    the <ol> element.
A) Ordered list
B) Ordered lists
  • 46. These are lists that begin with a bullet point.
A) Unordered lists
B) Unordered list
  • 47. The unordered list is created
    with the <ul> element.
A) True
B) False
  • 48. The unordered list is created
    with the <ol> element.
A) True
B) False
  • 49. Each item in the unordered list is placed between an opening <ul> tag and a closing </ul> tag.
A) False
B) True
  • 50. Each item in the Ordered list is placed between an opening <ol> tag and a closing </ol> tag.
A) True
B) False
  • 51. Inside the <dt> element you will usually see pairs of <dl> and <dd> elements.
A) True
B) False
  • 52. The <dt> tag is used to contain the term being defined.
A) True
B) False
  • 53. The <dt> is used to contain the
    definition.
A) True
B) False
  • 54. What is the opening tag used to contain the term being defined?
  • 55. What is the opening tag used to contain the definition?
  • 56. What is the opening tag used to create a definition list?
  • 57. What is the opening tag used to create an ordered list?
  • 58. What is the opening tag used to create an Unordered list?
  • 59. What is the closing tag used to create an ordered list?
  • 60. What is the closing tag used to create an Unordered list?
  • 61. <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
  • 62. <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?
  • 63. <ul>
    <li>1kg King Edward potatoes</li>
    <li>100ml milk</li>

    What is the missing code in the html file above?
  • 64. <ol>
    <li>Chop potatoes into quarters</li>
    <li>Drain potatoes and mash</li>

    What is the missing tag in the html code above?
  • 65. <li>Chop potatoes into quarters</li>
    <li>Drain potatoes and mash</li>
    </ol>

    What is the missing tag in the html code above?
  • 66. <li>1kg King Edward potatoes</li>
    <li>100ml milk</li>
    </ul>

    What is the missing tag in the html code above?
  • 67. <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?
  • 68. <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?
  • 69. <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?
  • 70. <ul>
    <li>2 eggs</li>
    <li>1tbs butter</li>
    <li>2tbs cream</li>
    </ul>

    What type of lists is shown above?
A) Unordered lists
B) Unordered list
  • 71. <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 lists
B) Ordered list
  • 72. Ordered lists use bullets.
A) True
B) False
  • 73. Unordered lists use numbers.
A) True
B) False
  • 74. Definition lists are used to define terminology.
A) False
B) True
  • 75. Lists can be nested inside one another.
A) True
B) False
  • 76. Each item in the Unordered list is placed between an opening <ul> tag
    and a closing </ul> tag.
A) True
B) False
  • 77. <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?
  • 78. <ul>
    <li>1kg King Edward potatoes</li>
    <li>100ml milk
    </ul>

    What is the missing tag in the html code above?
  • 79. <ol>
    <li>Chop potatoes into quarters</li>
    <li>Drain potatoes and mash</li>


    What is the missing tag in the html code above?
  • 80. <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?
Created with That Quiz — the math test generation site with resources for other subject areas.