Multiple choice html

HTML Tags are case sensitive.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

HTML tags are case-insensitive, meaning , , and all work identically in standard HTML. This differs from XHTML (which requires lowercase) and XML (which is case-sensitive), but HTML itself treats uppercase and lowercase tags as equivalent.

AI explanation

To answer this question, you need to understand how HTML tags are used.

Option A) True - This option is incorrect because HTML tags are not case sensitive. For example, <p> and </p><p> are equivalent and can be used interchangeably.

Option B) False - This option is correct because HTML tags are not case sensitive. The tags can be written in uppercase, lowercase, or a combination of both, and they will still be interpreted correctly by the browser.

The correct answer is B) False. HTML tags are not case sensitive.