HTML entities
HTML entities:
Sometimes, we want to enter charcters wihich have aa special meaning in a HTML markup,
we write an HTML entity character sequence in place of the special character.
For example,
- < is encoded to &lt;
- > is encoded to &gt;
- " is encoded to &qout;
- ' is encoded to &apos;
- & is encoded to &amp;
- a space is encoded to &nbsp;
Comments
Post a Comment