with Verified Solutions
What is the function of the alternative text for images?
✔✔Alternative text describes the image content and is displayed when the image cannot be
loaded; it also assists users with screen readers.
How do you create a list of items that do not require numbering?
✔✔An unordered list can be created by listing items with bullet points, making it easy to present
related content.
What distinguishes an ordered list from an unordered list?
✔✔An ordered list displays items in a numbered format, while an unordered list uses bullet
points to represent items without a specific order.
What role does a form play in HTML?
✔✔A form allows users to input data and submit it for processing, enabling interaction with the
website.
1
,What is the purpose of the head section in an HTML document?
✔✔The head section contains meta-information about the document, such as the title and links to
stylesheets and scripts, which are not displayed directly on the page.
How do you create a hyperlink in HTML?
✔✔A hyperlink can be created by specifying the URL and the text that will be clickable for
users.
What does the title element do?
✔✔The title element defines the title of the HTML document, which appears in the browser's
title bar and is important for search engine optimization.
How can you insert an image into a webpage?
✔✔An image can be inserted by providing the source of the image file along with alternative
text for accessibility.
How can you create a field for user input in a form?
✔✔A field for user input can be created by specifying the type of input needed, such as text,
password, or email.
2
, What is the significance of using labels for form inputs?
✔✔Labels improve usability and accessibility by clearly indicating what information is required
for each input field.
How can you create a dropdown menu in HTML?
✔✔A dropdown menu is created by listing options within a selection box, allowing users to
choose from multiple choices.
What does a division element represent in a webpage?
✔✔A division element is used to group content together, helping with layout and styling without
affecting the document's structure.
How do you link a CSS stylesheet to an HTML document?
✔✔A CSS stylesheet can be linked in the head section, allowing the webpage to apply styles
defined in the stylesheet.
What is the purpose of including a script in an HTML document?
3