Multiple choice technology web 2.0 What is the correct HTML for referring to an external style sheet stylesheet>mystyle.css</stylesheet /> <link rel="stylesheet" type="text/css" href="mystyle.css"> <link rel="stylesheet" type="text/css" src="mystyle.css"> <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 <stylesheet> tags are invalid HTML.