Computer Science, asked by Anonymous, 1 year ago

What do you understand by the term Case sensitive language??

Answers

Answered by Soñador
1
ANSWER :

HTML is a case sensitive language.
This means that HTML codes could be easily written either in capital or small alphabets which perform the same function.

EXAMPLE :

<HTML>
<BODY>
Hello
</BODY>
</HTML>

AND

<html>
<body>
Hello
</body>
</html>


BOTH THE CODES WILL GIVE THE SAME OUTPUT AS " Hello ".

U can also write like

<hTmL>
<htML>

or anyother format if u want but it will always provide the same output.


HOPE IT HELPS

Similar questions