How to write out HTML entity name ( , <, >, etc)
You can use &
instead of &
So
will be &nbsp;
You will need to write out a part of the code, in this example, I'll use the ampersand. Instead of writing
, write out the ampersand, &
, and then write nbsp;. Your final result should be &nbsp;
, which will display
on the webpage.