4.3.4 quiz: understanding html\nquestion 3 of 10\nmarco wants to create a heading that is bold and italic to…

4.3.4 quiz: understanding html\nquestion 3 of 10\nmarco 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?\na. no, because <b> is the tag for highlighted text.\nb. yes, he has set up the code correctly and will have a heading that is bold and italic.\nc. no, because <ins> is the tag for underlined text.\nd. no, because <h1> indicates a paragraph, not a heading.
Answer
Brief Explanations:
The <b> tag is for bold text, <i> (not <ins>) is for italic text. <ins> is for inserted text. <h1> is a heading tag. The code <h1><b><ins>What's New</ins></b></h1> won't make the text italic as needed.
Answer:
C. No, because <ins> is the tag for inserted text.