Multiple choice technology web 2.0

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. <link rel="stylesheet" type="text/css" src="mystyle.css">

  4. <style src="mystyle.css" />

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

External style sheets are linked using the element with attributes `rel="stylesheet"`, `type="text/css"`, and `href`. Using `src` instead of `href` is incorrect for links, and tags with src or custom &lt;stylesheet&gt; tags are invalid HTML.