Rated A+
What is an example of a custom data attribute?
✔✔The code `<div data-user-id="12345">User Info</div>` defines a custom attribute for
storing extra information.
What is the purpose of the `<abbr>` tag?
✔✔The `<abbr>` tag is used to define an abbreviation or acronym, often with an optional title
for clarification.
What does the `<cite>` tag signify?
✔✔The `<cite>` tag is used to reference the title of a creative work, such as a book or a movie.
What does the `<progress>` tag represent?
✔✔The `<progress>` tag displays the completion progress of a task, visually represented by a
bar.
What is an example of a details tag?
1
, ✔✔The code `<details><summary>More Info</summary>Details content goes here.</details>`
creates a collapsible section.
What is the purpose of the `<address>` tag?
✔✔The `<address>` tag is used to provide contact information for the author or owner of a
document.
What does the `<time>` tag do?
✔✔The `<time>` tag represents a specific time or date, making it easier for browsers and search
engines to understand.
What is an example of a figure tag?
✔✔The code `<figure><img src="image.jpg" alt="Description"><figcaption>Image
Caption</figcaption></figure>` associates an image with a caption.
What is the role of the `<fieldset>` tag?
✔✔The `<fieldset>` tag is used to group related elements within a form, often with a border.
What is an example of a summary tag?
2