HTML MCQ
HTML MCQ
12) Which amongst the following are correct HTML code for
creating a hyperlink?
A. <a>https://www.tutorialandexample.com/</a>
B. <a url=”https://www.tutorialandexample.com/”>Tutorial and
Example</a>
C. <a”https://www.tutorialandexample.com/”>Tutorial and
Example</a>
D. <a href=”https://www.tutorialandexample.com/”> Tutorial and
Example</a>
Hide Answer
Workspace
Answer: d. <a href=”https://www.tutorialandexample.com/”>
Tutorial and Example</a>
Explanation: <a> tag is used to describe the hyperlink, which is
used to link different pages in HTML. “href” is the attribute of <a>
element, which is used to specify the link’s target.
13) What is the correct HTML code for opening a link in a new
tab or new browser window?
A. <a href=”url” target=”new”>
B. <a href=”url” target=”_blank”>
C. Both (a) and (b)
D. None of the above
Hide Answer
Workspace
Answer: b. <a href=”url” target=”_blank”>
Explanation: target attribute is used to inform the browser to
open the link in the new tab. _blank is assigned to target attribute
which informs the browser to open link in the new tab or window,
based on the default settings of browser.
16) Which among the following tag is used for making text
italic in HTML?
A. <italic>
B. <i>
C. <I>
D. None of the above
Hide Answer
Workspace
Answer: b. <i>
Explanation: The <i> tag is used to show the text in italic format.
17) Which among the following is the correct HTML code for
inserting an image?
A. <image alt=”SampleImage”>image.gif</image>
B. <img href=”image.gif” alt= “SampleImage”>
C. <image src=”image.gif” alt= “SampleImage”>
D. <img src=”image.gif” alt= “SampleImage”>
Hide Answer
Workspace
Answer: d. <img src=”image.gif” alt= “SampleImage”>
Explanation: The <img> tag is used to insert an image in a
HTML page. The <img> tag has two major attributes: src
(specifies the path to the image) and alt (specifies the alternate
name for the image in case the image is not displayed).