HTML Heading MCQs
HTML Heading MCQs : This section focuses on the "Heading" tag in Html. These Multiple Choice Questions (mcq) should be practiced to improve the Html skills required for various interviews (campus interview, walk-in interview, company interview), placement, entrance exam and other competitive examinations.
1. How many HTML heading tags are there?
View Answer
2. In HTML, which one of the following is not a heading tag?
View Answer
3. Which one of the following tag will be used to add a heading to a content?
View Answer
4. In order to display the contents as follows:
Headings- HTML
Sub-heading- Elements
Sub-sub-headings- Heading tags
Which one of the following options will be most preferred as tags for each of the above line respectively?
View Answer
5. Choose the correct option.
View Answer
6. Which one of the following is used for adding paragraph in HTML?
View Answer
7. How the content of the following will be displayed when executed in browser?
<!DOCTYPE html>
<html>
<body>
<p>LetsFindCourse</p>
<p>Learning Made Easy!</p>
</body>
</html>
View Answer
8. Fill in the blank from the given options in order to display the paragraph in red colour font.
<!DOCTYPE html>
<html>
<body>
<p style="__________">LetsFindCourse</p>
</body>
</html>
View Answer
9. With respect to the HTML code given below, which line will have the highest font size?
<!DOCTYPE html>
<html>
<body>
<h1 style="font-size:15px;">Heading 1</h1>
<h3 style="font-size:30px;">Heading 3</h3>
<h5 style="font-size:20px;">Heading 5</h5>
</body>
</html>
View Answer
10. On execution of below HTML code, size of World will be equal to size of which HTML tag?
<!DOCTYPE html>
<html>
<body>
<h4><h2><h3><h1>World</h1></h3></h2></h4>
</body>
</html>
View Answer
Also check :
Discussion