Multiple choice technology web technology What is a correct way of referring to a stylesheet called "mystyle.xsl" ? <link type="text/xsl" href="mystyle.xsl" /> <?xml-stylesheet type="text/xsl" href="mystyle.xsl" ?> <stylesheet type="text/xsl" href="mystyle.xsl" /> None of the above Reveal answer Fill a bubble to check yourself B Correct answer Explanation The correct way to reference an XSL stylesheet in XML is using the xml-stylesheet processing instruction: . This is placed in the XML prolog, not as an HTML-style link tag.