This acronym stands for HyperText Markup Language.
What is HTML?
This tag creates the largest heading.
What is <h1>?
This tag is used to create a hyperlink. Hint: it's one letter.
What is <a>?
This tag creates a bulleted list.
What is <ul>?
This tag is used to create a form.
What is <form>?
True or False: The World Wide Web Consortium (W3C) is the organization that sets web standards for HTML.
What is true?
This tag defines a paragraph.
What is <p>
This attribute specifies the destination of a link.
What is href?
This tag creates a numbered list.
What is <ol>?
This input type creates a checkbox. Hint: ___="____"
What is type="checkbox"?
This declaration defines an HTML5 document type. Hint: <!____ ___>
What is <!DOCTYPE html>?
This tag inserts a line break without starting a new paragraph.
What is <br>?
This attribute opens a link in a new tab. Hint: ____="_ ____"
What is target="_blank"?
This tag defines a table row.
What is <tr>?
This input type creates a text field.
What is type="text"?
This element contains metadata and is not displayed on the page.
What is <head>?
This tag defines important (bold) text semantically.
What is <strong>?
This tag is used to display an image.
What is <img>?
This tag defines a table cell.
What is <td>?
This tag creates a dropdown menu. Hint: it's one word, not dropdown or menu.
What is <select>?
This element defines the title shown in the browser tab.
What is <title>?
This tag defines emphasized (italic) text.
What is <em>?
This attribute provides alternative text for an image.
What is alt?
These three elements together form a basic HTML table structure.
What are <table>, <tr> and <td>?
This attribute makes a field required before submission.
What is required?