question 3 of 10 marco wants to create a heading that is bold and italic to make it really stand out on his…

question 3 of 10 marco wants to create a heading that is bold and italic to make it really stand out on his web page. hes typed in the code <h1><b><ins>whats new</ins></b></h1>. will this work? a. no, because <ins> is the tag for underlined text. b. no, because <b> is the tag for highlighted text. c. no, because <h1> indicates a paragraph, not a heading. d. yes, he has set up the code correctly and will have a heading that is bold and italic.
Answer
Answer:
A. No, because <ins> is the tag for underlined text.
Brief Explanations:
The <ins> tag is for inserted text, not italic. The correct tag for italic is <i> or <em>. So Marco's code won't work as intended.