HTML


21) 

Which of the following is not sectioning elements?

Answer: D) <header>
Explanation

<header> is not sectioning elements.


22) 

Which specifies unique for an element?

Answer: A) id
Explanation

id specifies unique for an element.


23) 

Which tag is used to insert images in web page?

Answer: C) img
Explanation

<img> tag is used to insert images in web pages. e.g <img src="pic1.jpg" width="100">.


24) 

Which tag creates a smallest heading?

Answer: B) <h6>
Explanation

<h6> tag creates a smallest heading in html.


25) 

Which of the following tag creates a largest heading?

Answer: B) <h1>
Explanation

In HTML <h1> tag is used to create a largest heading.


26) 

Which tag will create a drop down list?

Answer: C) <select>
Explanation

<select> tag is used to create a dropdown list in html.


27) 

Which of the following is not a pair tag?

Answer: C) img
Explanation

<img> is not a pair tag in html.


28) 

Which of the following is not a HTML tag?

Answer: C) field
Explanation

field is not a HTML tag. There is not such field tag in HTML.


29) 

The tag which is used for order list is

Answer: A) <ol>
Explanation

The tag used for an ordered list in HTML is the <ol> (ordered list) element.


30) 

Which tag is used to create a bullet or unordered list?

Answer: D) <ol>
Explanation

To create a bullet or unordered list in HTML, <ul> (unordered list) tag is used along with the <li> (list item) elements.