diff --git a/guide/english/html/symbols/index.md b/guide/english/html/symbols/index.md index 85c95728b0..15f10b7a64 100644 --- a/guide/english/html/symbols/index.md +++ b/guide/english/html/symbols/index.md @@ -12,6 +12,17 @@ If no entity name exists, either the entity number or hexadecimal reference can  +### Ampersand escape +If you want to show the entity name on a webpage like this: +```html +
<html>
+``` +Then you need to use an ampersand escape, like below: +```html +<html>
+``` +This will display the entity name rather than the entity. + #### More Information: * [W3 Schools Reference](https://www.w3schools.com/html/html_symbols.asp)