From 5538cc6fe1b2dedf6bb4cd59a777dc7d1f5229ff Mon Sep 17 00:00:00 2001 From: Manoj Marmat Date: Fri, 21 Oct 2022 19:34:16 +0530 Subject: [PATCH] feat: adding formatting tags --- CheatSheets/html-cheatsheet.md | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/CheatSheets/html-cheatsheet.md b/CheatSheets/html-cheatsheet.md index 8d563b0..ef9e06c 100644 --- a/CheatSheets/html-cheatsheet.md +++ b/CheatSheets/html-cheatsheet.md @@ -3,6 +3,8 @@ - [HTML CheatSheet for Developers](#html-cheatsheet-for-developers) - [Basic Tags of HTML](#basic-tags-of-html) - [Tags to Structure Document](#tags-to-structure-document) + - [Semantic Elements](#semantic-elements) + - [Formatting](#formatting) - [Links](#links) - [Images](#images) - [Lists](#lists) @@ -38,17 +40,12 @@ | `
` | In addition to switching to the next line, this tag also drawsa horizontal bar to indicate the end of the section. | | `...` | Another old tag, this is used to draw a line atthe center of the text, so as to make it appearunimportant or no longer useful. | | `...` | Tag for citing author of a quote. | -| `...` | Pre-formatted, ‘monospace’ text laid out with whitespace inside the element intact. | -| `` | Denotes text that has been inserted into the webpage. | -| `
` | Quotes often go into this tag. Is used in tandem with the tag. | +| `
` | Quotes often go into this tag. Is used in tandem with the ``tag. | | `` | Similar to the above tag, but for shorter quotes. | | `` | Denotes abbreviations, along with the full forms. | | `
` | Tag for specifying author’s contact details. | | `` | Tag dedicated for definitions. | | `` | This is used to display code snippets within a paragraph. | -| `` | Used for writing a subscript (smaller font just below the mid-point of normal font). | -| `` | Similar to the above tag, but for superscripting. | -| `` | Reduces text size. In HTML5, it often refers to redundant or invalid information. | | `` | Its a Block level element that defines content aside from the content in which it is Placed. | **[🔼Back to Top](#table-of-contents)** @@ -65,7 +62,6 @@ | `
...
` | Defines a footer for a document or section | | `
...
` | Specifies a header for a document or section | | `
...
` | Specifies the main content of a document | -| ` ... ` | Defines marked/highlighted text | | `` | Defines navigation links | | `
...
` | Defines a section in a document | | ` ... ` | Defines a visible heading for a `
` element | @@ -73,6 +69,23 @@ **[🔼Back to Top](#table-of-contents)** +## Formatting + +| Command | Description | +| ------------------------ | ---------------------------------------------------- | +| ` ... ` | Defines bold text | +| ` ... ` | Defines emphasized text | +| ` ... ` | Defines a part of text in an alternate voice or mood | +| ` ... ` | Defines smaller text | +| ` ... ` | Defines important text | +| ` ... ` | Defines subscripted text | +| ` ... ` | Defines superscripted text | +| ` ... ` | Defines inserted text | +| ` ... ` | Defines deleted text | +| ` ... ` | Defines marked/highlighted text | + +**[🔼Back to Top](#table-of-contents)** + ## Links | Command | Description |