HTML — HTML Entities
HTML entities are used to display reserved characters like <
, >
, &
, etc. They start with &
and end with ;
.
Examples:
<
=<
>
=>
&
=&
= non-breaking space
<p>5 < 10 and 10 > 5</p>
<p>Use & to show an ampersand</p>