From a HTML perspective, you do not need to escape a single quote.
Code:
<!-- some html -->
' displays as single quote
There is a special code for double quotes
Code:
<!-- some html -->
" displays as double quote
Do not forget the semicolon at the end.
There are more codes that you must be aware of, e.g. smaller than
< and greater than
>.
A list that I found on the internet