$100 | $200 | $300 | $400 | $500 | |
---|---|---|---|---|---|
HTML Basics | What does HTML stand for? | What is the purpose of HTML? | What declaration is used to define the document type in HTML5? | What tags are used for creating headings in HTML? | What is the purpose of the element in HTML? |
HTML Elements | What tag is used to create a paragraph? | Which HTML tag is used to embed images? | What tag is used to create hyperlinks? | Which tag is commonly used to create a division or section in a document? | What is the purpose of the element in HTML? |
HTML Attributes | What attribute is used with the tag to specify the image source? | What attribute is used in the tag to specify the linked URL? | What attribute provides alternative text for an image in HTML? | What attribute serves as a unique identifier for an HTML element? | What attribute is used to define a style class for an HTML element? |
HTML Forms | What tag is used to create interactive fields in a form? | What are the two main methods used to send form data in HTML? | Which tag is used to create a form in HTML? | What tag is used to define a label for an input element? | What are the input types used for multiple-choice questions in forms? |
HTML Semantics and Accessibility | What is the definition of semantic HTML? | Which tag is used to define the header of a document or section? | What tag is used to define the footer of a document or section? | What is the benefit of using semantic elements in HTML? | Which tag is used to define a section in a document with thematic grouping? |
Q: What does HTML stand for?
A: HyperText Markup Language
Q: What is the purpose of HTML?
A: To create the structure of web pages
Q: What declaration is used to define the document type in HTML5?
A:
Q: What tags are used for creating headings in HTML?
A:
Q: What is the purpose of the
element in HTML?
A: It defines navigation links.
Q: What tag is used to create a paragraph?
A:
Q: Which HTML tag is used to embed images?
A:
Q: What tag is used to create hyperlinks?
A:
Q: Which tag is commonly used to create a division or section in a document?
A:
Q: What is the purpose of the element in HTML?
A: It groups inline-elements.
Q: What attribute is used with the tag to specify the image source?
A: src
Q: What attribute is used in the tag to specify the linked URL?
A: href
Q: What attribute provides alternative text for an image in HTML?
A: alt
Q: What attribute serves as a unique identifier for an HTML element?
A: id
Q: What attribute is used to define a style class for an HTML element?
A: class
Q: What tag is used to create interactive fields in a form?
A:
Q: What are the two main methods used to send form data in HTML?
A: GET and POST
Q: Which tag is used to create a form in HTML?
A:
Q: What tag is used to define a label for an input element?
A:
Q: What are the input types used for multiple-choice questions in forms?
A: radio buttons and checkboxes
Q: What is the definition of semantic HTML?
A: Semantic HTML uses HTML to reinforce the meaning of content.
Q: Which tag is used to define the header of a document or section?
A:
Q: What tag is used to define the footer of a document or section?
A:
Q: What is the benefit of using semantic elements in HTML?
A: They enhance accessibility for screen readers.
Q: Which tag is used to define a section in a document with thematic grouping?
A: