There are several characters that you cannot type directly into HTML. You must use code to represent those characters. you can use either the entity number or the entity name in your code.
| Character | Entity Number | Entity Name | Description |
|---|---|---|---|
| “ | " | " | quotation mark |
| ‘ | ' | ' (does not work in IE) | apostrophe |
| & | & | & | ampersand |
| < | < | < | less-than |
| > | > | > | greater-than |
You embed these codes into your HTML:
110 < 150 & 150 > 110
To give you:
110 < 150 & 150 > 110
