HTML Entities

Reserved characters in HTML must be replaced with entities:

  • < (less than) = &lt;
  • > (greater than) = &gt;

HTML Character Entities

Some characters are reserved in HTML.

If you use the less than (<) or greater than (>) signs in your HTML text, the browser might mix them with tags.

Entity names or entity numbers can be used to display reserved HTML characters.

Entity names look like this :

&entity_name;

Continue reading HTML Entities