Which among the following is not an HTML Tag?
2021
Which among the following is not an HTML Tag?
Answer: B. <list> — Valid HTML tags from options: <select> → valid <input> → valid <textarea> → valid (though written together, not "text area") But <List> is NOT an HTML tag.…
- A.
<select>
- B.
<list>
- C.
<input>
- D.
<textarea>
Attempted by 918 students.
Show answer & explanation
Correct answer: B
Valid HTML tags from options: <select> → valid
<input> → valid
<textarea> → valid (though written together, not "text area")
But <List> is NOT an HTML tag. Important Points (English) <select> is a valid HTML tag used to create a drop-down list .
<input> is a valid HTML tag used to create form input fields (text, password, radio, checkbox, etc.).
<textarea> is a valid HTML tag used for multi-line text input .
The correct tag name is <textarea> , not <text area> (HTML tags cannot contain spaces).
<list> is not a valid HTML tag .
For lists in HTML, valid tags are <ul> (unordered list) , <ol> (ordered list) , and <li> (list item) .
HTML tags are case-insensitive , but lowercase is recommended as per standards.
A video solution is available for this question — log in and enroll to watch it.