HTML Tags-2
1. Which of the following element is used for making the text bold?
a) <pre> tag
b) <br> tag
c) <b> tag
d) None of the above
Answer: C
<b> is used to making the text bold.
2. Which tag is used for inserting the largest heading?
a) <h6> tag
b) <h1> tag
c) <h3> tag
d) None of the above
Answer: A
h6 tag is used for inserting the largest heading.
3. Which tag is used for creating an unordered list in HTML?
a) <ol> tag
b) <li> tag
c) <ul> tag
d) None of the above
Answer: C
<ul> tag is used for creating an unordered list in HTML.
4. How to create a hyperlink in HTML?
a) <a href = "www.google.com">Google</a>
b) <a url = "www.google.com" Google/a>
c) <a link = "www.google.com">Google</a>
d) None of the above
Answer: A
No explaination is given for this question.
5. Which tag is used for making the text italic?
a) <i> tag
b) <italic> tag
c) <it> tag
d) None of the above
Answer: A
<ul> tag is used for making the text italic.
6. How to insert an image in HTML?
a) <img href = "mountain.png" />
b) <img url = "mountain.png" />
c) <img src = "mountain.png" />
d) None of the above
Answer: C
<img> tag with src attribute is used to insert an image.
7. <input> is a
a) Format Tags
b) Empty Tags
c) Document tags
d) None of the above
Answer: B
<input> tag is an empty tag.
8. Which tag is used to make the underlined text?
a) <i> tag
b) <ul> tag
c) <u> tag
d) None of the above
Answer: C
<u> tag is used to display the underlined text.
9. How to create a checkbox in HTML?
a) <input type = "checkbox">
b) <input type = "check">
c) <checkbox>
d) None of the above
Answer: A
We have to use the <input> tag and give the value checkbox to its type attribute.
10. Which tag is used to define options in a drop-down selection list?
a) <select> tag
b) <list> tag
c) <dropdown> tag
d) <option> tag
Answer: D
<option> tag is used to define options in drop-down list.