From c07e656f83a52a4926ab00616af0399aaf7f4f35 Mon Sep 17 00:00:00 2001 From: Bhuvan Singla Date: Sun, 4 Nov 2018 00:56:30 +0530 Subject: [PATCH] Add 'HTML Tags' (#20820) * Add 'HTML Tags' * Update index.md --- guide/english/html/index.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/guide/english/html/index.md b/guide/english/html/index.md index 1d177cdca5..1f6a32629f 100644 --- a/guide/english/html/index.md +++ b/guide/english/html/index.md @@ -45,6 +45,18 @@ h1: The element defines a large heading p: The element defines a paragraph +### HTML Tags + +HTML tags are element names surrounded by angle brackets: + +``` here is the content.. ``` + +HTML tags normally come in pairs like ```

```and ```

``` + +The first tag in a pair is the start tag, the second tag is the end tag + +The end tag is written like the start tag, but with a forward slash inserted before the tag name + ### HTML Versions Since the early days of the web, there have been many versions of HTML