Correct
What does the `<article>` tag signify in HTML?
✔✔The `<article>` tag is used to define independent, self-contained content that could be
distributed or reused, such as a news article or blog post.
How is a comment added in HTML?
✔✔A comment in HTML is added using `<!-- comment goes here -->`, and it is not displayed in
the browser.
What is the use of the `<figure>` tag in HTML?
✔✔The `<figure>` tag is used to encapsulate media such as images or diagrams, along with an
optional caption using the `<figcaption>` tag.
What does the `<aside>` tag represent?
✔✔The `<aside>` tag is used for content that is tangentially related to the content around it, such
as sidebars or pull quotes.
1
, How do you create a definition list in HTML?
✔✔A definition list is created using the `<dl>` tag, with terms defined by the `<dt>` tag and
descriptions by the `<dd>` tag.
What is the function of the `<address>` tag?
✔✔The `<address>` tag is used to provide contact information for the author or owner of a
document or article.
How can you specify the language of an HTML document?
✔✔You specify the language of an HTML document using the `lang` attribute in the `<html>`
tag, like `<html lang="en">`.
What is the purpose of the `<main>` tag?
✔✔The `<main>` tag is used to represent the main content of the document, excluding headers,
footers, and sidebars.
What tag would you use to define emphasized text?
✔✔The `<em>` tag is used to define emphasized text, which is typically displayed in italics.
2