What is the root element that encloses all other HTML elements in a document.
What is the <html> tag?
The largest heading tag in HTML.
What is <h1>?
The tag used to create a hyperlink to another web page.
What is the <a> tag?
A generic container tag that is often used for styling with CSS. It has no semantic meaning.
What is the <div> tag?
The tag that creates an HTML form for user input.
What is the <form> tag?
This declaration defines the document type to be HTML5
What is <!DOCTYPE html>?
This tag is used to define a paragraph
What is <p>?
This attribute of the <a> tag specifies the URL of the link.
What is the href attribute?
Similar to <div>, but it is an inline container and also often used for styling specific portions of text.
What is the <span> tag?
The most common form element, used to collect various types of user data like text, passwords, and numbers.
What is the <input> tag?
The section of the HTML document that contains metadata about the HTML page, like the title and character set.
What is the <head> element?
To make text bold, you can use either this tag or the <strong> tag.
What is the <b> tag?
This attribute of the <a> tag is often used to open a link in a new browser tab or window.
What is the target="_blank" attribute?
This semantic tag represents a self-contained composition in a document, page, application, or site.
What is the <article> tag?
This attribute of the <input> tag specifies the type of input field, such as "text", "password", or "email".
What is the type attribute?
he main content of the HTML document that is visible to the user resides within this element.
What is the <body> element?
This type of list displays items with numbers.
What is an ordered list (<ol>)?
The tag used to embed an image in an HTML document.
What is the <img> tag?
This semantic tag typically contains navigational links.
What is the <nav> tag?
A multi-line text input control.
What is the <textarea> tag?
This tag is used to define a line break.
What is the <br> tag?
Each item within an ordered or unordered list is defined by this tag.
What is the <li> tag?
This attribute of the <img> tag specifies the path to the image file.
What is the src attribute?
his semantic tag usually contains introductory content or a set of navigational links at the top of a section or page.
What is the <header> tag?
This form element provides a dropdown list of options.
What is the <select> tag?