Which of the following is the correct HTML entity for the less than sign (<)?
"
>
<
&
Which tag is used to create a header cell in an HTML table?
Which of these elements is typically NOT found within a <header> tag?
How do you create bold text in HTML?
All of the above
What is the correct HTML syntax for creating a list item within an ordered list?
<item>Item</item>
Which of the following RGBA values represents a fully opaque blue color?
rgba(0, 0, 255)
rgba(0, 0, 255, 1)
rgba(0, 0, 255, 0)
rgba(0, 0, 255, 0.5)
What happens to comments when an HTML document is viewed in a browser?
They are sent to the browser but not rendered visually.
Their behavior is unpredictable.
They are displayed along with the regular content.
They are removed by the browser before processing the HTML.
How do you create a nested list in HTML?
It's not possible to create nested lists in HTML.
Place a list inside another list's tags.
Use the 'nested' attribute.
Nest lists using CSS.
What is the correct HTML for creating a text input field?
In which scenario would you use the <aside> tag?
To display the main navigation menu of a website.
To include a pull quote or a sidebar that is related to the main content.
To mark up the header section of a webpage.
To contain the primary content of a webpage.