How do you make text appear as a subscript?
✔✔ By using the `<sub>` tag
What tag would you use to make text appear as a superscript?
✔✔ `<sup>`
How do you group form elements in HTML?
✔✔ By using the `<fieldset>` tag
What attribute specifies the width of a table in HTML?
✔✔ `width`
How do you add an audio file in HTML?
✔✔ By using the `<audio>` tag with the `src` attribute
How do you specify a video source in HTML?
1
, ✔✔ By using the `<video>` tag with the `src` attribute
How do you create a checkbox in an HTML form?
✔✔ By using `<input type="checkbox">`
How do you specify a password field in an HTML form?
✔✔ By using `<input type="password">`
What attribute makes an input field mandatory to fill out?
✔✔ `required`
How do you group multiple options within a `<select>` tag?
✔✔ By using the `<optgroup>` tag
What does HTML stand for?
✔✔ HyperText Markup Language
How do you create a paragraph in HTML?
2