From 429fec4f47e18a07cafa14c77faff9976bec77e2 Mon Sep 17 00:00:00 2001 From: Marcus Campbell <43100734+marcus-campbell-codes@users.noreply.github.com> Date: Sun, 4 Nov 2018 06:30:22 -0500 Subject: [PATCH] Made a List (#21311) I made a list at the beginning to make it look more organized for a beginner to read --- guide/english/html/index.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/guide/english/html/index.md b/guide/english/html/index.md index 828333e0aa..a5bdca1cb9 100644 --- a/guide/english/html/index.md +++ b/guide/english/html/index.md @@ -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 [](#) element links to other documents across the internet.