Already Passed
How do you create a text area for user input?
✔✔Use the `<textarea>` tag to create a multi-line input field, often used for longer text entries.
What does the `placeholder` attribute do?
✔✔The `placeholder` attribute displays a hint in an input field before the user types anything.
How do you define a table header?
✔✔Use the `<th>` tag inside a `<table>` to create a header cell, which is typically bold and
centered.
What is the use of the `<time>` tag?
✔✔The `<time>` tag represents a specific time or date, adding semantic meaning and helping
search engines recognize dates.
How can you make text italic without using the `<i>` tag?
✔✔Use the `<em>` tag to italicize text, which also implies emphasis for assistive technologies.
1
, How do you create a numbered list?
✔✔Use the `<ol>` tag to create an ordered list, with `<li>` tags for each list item, resulting in a
numbered format.
How does the `<abbr>` tag function?
✔✔The `<abbr>` tag marks an abbreviation or acronym, with the `title` attribute displaying its
full form on hover.
What’s the purpose of the `<code>` tag?
✔✔The `<code>` tag displays code snippets in a monospaced font, distinguishing it visually as
programming code.
How can you control the tab order of form elements?
✔✔Use the `tabindex` attribute to define the order in which form fields are selected when
pressing the tab key.
What does the `<footer>` tag signify?
2