100% Pass
What HTML tag acts as a container for interactive content like games or animations?
✔✔The `<canvas>` tag provides a drawing surface for rendering graphics using JavaScript,
perfect for games and animations.
How do you create a block of content that requires user input?
✔✔Use the `<form>` tag to wrap input elements, allowing users to submit information to a
server or process.
How can you add audio playback functionality to your webpage?
✔✔The `<audio>` tag enables audio files to be played directly on the webpage, supporting
controls like play and pause.
What is the role of the `<video>` tag in an HTML document?
✔✔The `<video>` tag allows you to embed video files, providing options for controls, autoplay,
and looping.
1
, What tag is used to display important text that should stand out?
✔✔The `<strong>` tag indicates strong importance, rendering text in bold to emphasize its
significance.
How do you group inline elements for styling purposes?
✔✔The `<span>` tag serves as an inline container for styling or manipulating small sections of
text or other elements.
What is the purpose of the `<blockquote>` tag in HTML?
✔✔The `<blockquote>` tag is used to indicate a section of quoted text, typically displayed with
indentation to highlight it.
How can you create a list of links to important resources on your webpage?
✔✔Utilize the `<nav>` tag to group navigational links, providing a clear path for users to explore
your site.
What tag helps you create an interactive button that users can click?
✔✔The `<button>` tag defines a clickable button, which can trigger actions or submit forms.
2