๐ฏ Writing a Heading
Simply put they are just like the HTML's **h1 to h6**
tags.
Let's see how โ
# Heading
## Heading
### Heading
#### Heading
##### Heading
###### Heading
will give us โ
Heading
Heading
Heading
Heading
Heading
Heading
A simple # + Space
before any text makes it a Heading,Single # act as a h1 tag, double ## act as h2 tag
as the hash before the text increases the heading tag so as the h tag
changes with each added #.
# for h1
## for h2
### for h3
#### for h4
##### for h5
###### for h6
๐ฏ Creating a Line Code
The Syntax goes like โ
`Inline code goes here`
This in real sense gives us โ Inline code goes here
๐ฏ Creating a Code Block
For a Code Block Syntax is Simply to put your code under ``` , and close it from both sides.
here it is โ
``` Your Code Here ```
will give you :
Your Code Here
๐ฏ Strikethrough Text
The Syntax goes like โ
Cross This Text
will give you โ
81
๐ฏ Blockquote Text
Simple >
before any Quote will give you a blockquote.
> You Quote here.
will give you โ
Your Quote here.
๐ฏ Bold
Very simple Syntax put any text between **__________**
** Bold Text**
will give you โ
** Bold Text**
๐ฏ Italic
Simple syntax for Italic have been using in this article all around โ
*Makes Text Italic*
will give you โ
Makes Text Italic
๐ฏ Italic and Bold
The Syntax for making any text Italic as well as Bold โ
***Makes Text Italic as well as Bold***
brings You :
Makes Text Italic as well as Bold
๐ฏ Link
Linking to an external resource can be easily done by the syntax shown below โ
[LINK_TEXT](LINK_URL)
An Example for that is :
Your Website : [Facebook](https://facebook.com)
will bring you :
Your Website : Facebook
๐ฏ Image
Linking any Image is also as very common practice & can be easily done by the syntax shown below, it can be an external link as well as from your local source โ
![Eat Sleep Code Repeat](https://images.unsplash.com/photo-1564865878688-9a244444042a?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80)
This Image is taken from an external resource, take a look โ