<!-- Please follow this checklist and put an x in each of the boxes, like this: [x]. It will ensure that our team takes your pull request seriously. --> - [x] I have read [freeCodeCamp's contribution guidelines](https://github.com/freeCodeCamp/freeCodeCamp/blob/master/CONTRIBUTING.md). - [x] My pull request has a descriptive title (not a vague title like `Update index.md`) - [x] My pull request targets the `master` branch of freeCodeCamp.
19 lines
882 B
Markdown
19 lines
882 B
Markdown
---
|
|
title: Symbols
|
|
---
|
|
|
|
## Symbols
|
|
|
|
HTML symbol entities are characters that are not represented on a user's keyboards. Many mathematical, scientific, and currency symbols
|
|
are not present on a normal keyboard; therefore, to add such symbols to a page using HTML, the HTML entity name can be used.
|
|
It is important to note that these will not effect the html code themselves, and will always be interpreted as text. For example, if we wanted to type <div> as text on a webpage, we may need to use these symbol entities.
|
|
|
|
If no entity name exists, either the entity number or hexadecimal reference can be used.
|
|
|
|

|
|
|
|
#### More Information:
|
|
|
|
* [W3 Schools Reference](https://www.w3schools.com/html/html_symbols.asp)
|
|
* [Symbols Reference Chart](https://dev.w3.org/html5/html-author/charref)
|