🎴 Flashcard Mode
CSS and HTML Styling Fundamentals
Card1 / 15
Mastered0
Review0
QuestionClick to flip
- What is the correct HTML for referring to an external style sheet?
AnswerClick to flip back
A
<link rel="stylesheet" type="text/css" href="mystyle.css">
💡 Explanation:
The <link> tag is the standard HTML element used to link external resources like stylesheets, requiring the rel attribute to define the relationship and href for the file path. The <style> tag is used for internal CSS, and <stylesheet> is not a valid HTML element.