Multiple choice technology web technology

  1. What is the correct HTML for referring to an external style sheet?

  1. <stylesheet>mystyle.css</stylesheet>

  2. <link rel="stylesheet" type="text/css" href="mystyle.css">

  3. <style src="mystyle.css">

  4. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The 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 tag is used for internal CSS, and &lt;stylesheet&gt; is not a valid HTML element.