Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.09 KB

Entities.md

File metadata and controls

37 lines (25 loc) · 1.09 KB

HTML Entities

HTML entities are used to display reserved characters in HTML. They are also used to display characters that cannot be typed from the keyboard.

Common HTML Entities

Character Entity Name Entity Number
& & &
< &lt; &#60;
> &gt; &#62;
" &quot; &#34;
' &apos; &#39;

Example Usage

<p>Use &lt; and &gt; to represent the less than and greater than signs.</p>

This will render as:

<p>Use < and > to represent the less than and greater than signs.</p>

Additional Resources