HTML Tags | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

HTML Tags

are HTML tags case sensitive? if i use <HTML> and </html> , willl it casue any execution problem?

18th Nov 2020, 1:44 PM
Senthil Kumar
Senthil Kumar - avatar
3 Answers
+ 8
HTML is totally case Insensitive. It has no effect if you change the case or not. <HTML> <Html> <hTmL> <html> All the above tags are same. But it is preferred that you have to use same case for your whole document. Also all the code looks clean by using small case or capital case to whole document. Happy coding 😊.
18th Nov 2020, 1:58 PM
ツSampriya😘ツ
ツSampriya😘ツ - avatar
+ 3
HTML is Not Case Sensitive HTML tags are not case sensitive: <P> means the same as <p>. The HTML standard does not require lowercase tags, but W3C recommends lowercase in HTML, and demands lowercase for stricter document types like XHTML. https://www.w3schools.com/html/html_elements.asp
18th Nov 2020, 1:48 PM
Joerg Blum
Joerg Blum - avatar
0
Html doesn't case sensitive, But lower case used . Just like handwriting.
18th Nov 2020, 11:41 PM
Manish Verma
Manish Verma - avatar