Which tag must be used to include a stylesheet in an HTML document?

Enhance your HTML skills with our HTML Tags Test. Challenge your expertise through interactive flashcards and multiple-choice questions. Each question includes hints and thorough explanations. Prepare effectively for your HTML examination!

To include a stylesheet in an HTML document, the tag is essential. This tag serves as a connector between the HTML document and the external CSS file. By using the tag within the section of the HTML, you can specify attributes such as "rel" to indicate the relationship between the current document and the linked file, typically setting it to "stylesheet". Additionally, the "href" attribute is used to provide the path to the CSS file.

The tag allows for the inclusion of styles from external sources, enabling a separation of content and presentation. This is crucial for maintaining a clean and manageable codebase, especially in larger projects. It allows multiple HTML files to share the same stylesheet, facilitating easier updates and consistent design across different pages.

While