Made a List (#21311)

I made a list at the beginning to make it look more organized for a beginner to read
This commit is contained in:
Marcus Campbell
2018-11-04 06:30:22 -05:00
committed by Manish Giri
parent 5f5593b8e5
commit 429fec4f47

View File

@ -4,7 +4,10 @@ title: HTML
# HTML
HyperText Markup Language (HTML) is a markup language used to construct online documents and is the foundation of most websites today. A markup language like HTML allows us to 1) create links to other documents, 2) structure the content in our document, and 3) ascribe context and meaning to the content of our document.
HyperText Markup Language (HTML) is a markup language used to construct online documents and is the foundation of most websites today. A markup language like HTML allows us to:
1) Create links to other documents
2) Atructure the content in our document
3) Ascribe context and meaning to the content of our document
An HTML document has two aspects to it. It contains structured information (Markup), and text-links (HyperText) to other documents. We structure our pages using [HTML elements](#). They are constructs of the language providing [structure](#) and [meaning](#) in our document for the browser and the [<anchor>](#) element links to other documents across the internet.