1.

What are HTML Entities?

Answer»

In HTML some characters are RESERVED like ‘<’, ‘>’, ‘/’, etc. To use these characters in our webpage we need to use the character entities called HTML Entities. Below are a few mapping between the reserved character and its respective entity character to be used.

CharacterEntity NameEntity NUMBER
<&AMP;lt;&#60;
>&gt;&#62;
&&amp;&#38;
(non-breaking SPACE) Eg. 10  PM&nbsp; Eg. <p>10&nbsp&nbspPM</p>&#160;


Discussion

No Comment Found