What tag is used to define the main heading of an HTML document?
What is the <h1> tag?
What attribute is used to specify the URL of a hyperlink?
What is the href attribute?
What defines a section of content in an HTML document?
What is an HTML element?
What is the root element of an HTML document?
What is the <html> tag?
What is the purpose of the <form> element in HTML?
What is to collect user input?
Which tag is used to create an unordered list?
What is the <ul> tag?
How do you add alternative text for an image in HTML?
What is using the alt attribute?
What is the purpose of the <div> element?
What is to group content for styling purposes?
What is the purpose of the <head> section in an HTML document?
What is to contain metadata and links to scripts and styles?
How do you create a text input field in a form?
What is using the <input type="text"> element?
What tag is used to embed an image in a webpage?
What is the <img> tag?
What attribute is used to define the target of a hyperlink?
What is the target attribute?
What is the role of the <span> element in HTML?
What is to style a portion of text inline without breaking the flow?
What is the structure of a basic HTML document?
What is <!DOCTYPE html>, followed by <html>, <head>, and <body> tags?
What attribute is used to specify how to send form data?
What is the method attribute (e.g., GET or POST)?
How do you create a line break in HTML?
What is using the <br> tag?
What is the purpose of the class attribute in HTML?
What is to define a class for CSS styling?
What is an empty element in HTML?
What is an element that does not have a closing tag, like <img>?
What tag is used to create a footer in an HTML document?
What is the <footer> tag?
What tag is used to create a dropdown list in a form?
What is the <select> tag?
What tag is used to define a table in HTML?
What is the <table> tag?
How do you specify inline styles for an element?
What is using the style attribute?
How do you define a section of navigation links in HTML?
What is using the <nav> element?
How do you define a section for introductory content in an HTML document?
What is using the <header> tag?
How do you create a checkbox input in a form?
What is using the <input type="checkbox"> element?