Are HTML tags case sensitive?
Tags which we use in HTML are not case-sensitive. It can be written in uppercase, lowercase, or mixed case format. The browser will just render based on the function of the tag.
For example: -
<p>…</p> → Lowercase
<p>…</P> → Mixed case
<P>…</P> → ...
lovetocode.hashnode.dev1 min read