Answers Graded A+
What is the purpose of the `<embed>` tag?
✔✔The `<embed>` tag is used to embed external content, such as multimedia files or
applications, directly into an HTML document.
What does the `<object>` tag represent?
✔✔The `<object>` tag is used to embed multimedia, such as audio or video files, and can also
represent other web content.
What is the role of the `<param>` tag?
✔✔The `<param>` tag is used to define parameters for plugins that are embedded using the
`<object>` tag.
What does the `<source>` tag do?
✔✔The `<source>` tag specifies multiple media resources for elements like `<audio>` and
`<video>`, allowing browsers to choose the most appropriate file.
1
, What is the purpose of the `<bdi>` tag?
✔✔The `<bdi>` tag isolates a section of text that may be formatted in a different direction from
its surrounding text.
What does the `<bdo>` tag do?
✔✔The `<bdo>` tag overrides the current text direction, allowing the text to be displayed in the
specified direction (left-to-right or right-to-left).
What is the role of the `<mark>` tag?
✔✔The `<mark>` tag is used to highlight or mark text for reference, indicating relevant or
important information.
What is the purpose of the `<progress>` tag?
✔✔The `<progress>` tag represents the completion progress of a task, typically displayed as a
progress bar.
What does the `<meter>` tag represent?
✔✔The `<meter>` tag displays a measurement within a known range, such as disk usage or a
rating.
2