Already Passed
Which tag in HTML is used to create a section that will only be visible to search engines and
screen readers?
✔✔ `<noscript>`
What tag would you use to display mathematical expressions in HTML?
✔✔ `<math>`
Which HTML tag defines a standard cell within a table?
✔✔ `<td>`
How do you create a collapsible section that provides additional information when clicked?
✔✔ `<summary>`
What tag would you use to display user-selectable radio button options in a form?
✔✔ `<input type="radio">`
1
,Which HTML element is used to specify a term in a description list?
✔✔ `<dt>`
How can you specify a placeholder image until an actual image loads?
✔✔ By using the `srcset` attribute with `<img>`
Which HTML tag allows you to label sections within a form?
✔✔ `<fieldset>`
What HTML tag would you use to include external JavaScript files?
✔✔ `<script>`
How do you specify that text should appear right-to-left in an HTML document?
✔✔ By setting `dir="rtl"`
Which tag is used to indicate that the content has an interactive dialog box?
✔✔ `<dialog>`
2
, What tag should you use for adding short, self-contained code snippets?
✔✔ `<code>`
How do you indicate that an image is purely decorative and shouldn’t be read by screen readers?
✔✔ By setting `alt=""`
What tag would you use to define an inline frame that embeds another HTML document?
✔✔ `<iframe>`
How do you provide a description or caption for a table?
✔✔ `<caption>`
Which tag is best for marking text as subscript in HTML?
✔✔ `<sub>`
What attribute should you add to an input field to specify it is required?
✔✔ `required`
3