# Markdown cheatsheet

**This cheetsheet will provide a quick overview of Markdown syntax elements.**

-  ### **Heading**
  - Markdown Syntax
    ```
    	# H1
        ## H2
        ### H3
        ### H4
        ### H5
        ### H6
    ```
  - Output
    
![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658580345865/Vr0VQNfT-.png align="left")

---

-  ### **Bold**
  - Markdown Syntax
    ```
    	**Bold**
    ```
  - Output

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658580423221/mxHFPcZ6h.png align="left")

---

-  ### **Italic**
  - Markdown Syntax
    ```
    	*Italic*
    ```
  - Output
  
![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658581136982/6jv6XZYLL.png align="left")

---

-  ### **Blockquote**
  - Markdown Syntax
    ```
    	> blockquote
    ```
  - Output

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658597845177/1839Hz0EQ.png align="left")

---

-  ### **Ordered List**
  - Markdown Syntax

    ```

	1. First item
	2. Second item
    3. Third item
    ```
  - Output

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658597896433/WrJR8ah93.png align="left")

---

-  ### **Unordered List**
  - Markdown Syntax

    ```

	- First item
	- Second item
    - Third item
    ```
  - Output


![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658598080362/_Wrh-Bgc9.png align="left")

---

-  ### **Code**
  - Markdown Syntax
    ```

	This is a `code`
    ```
  - Output

![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658598195883/47Eh7K8YZ.png align="left")

---

-  ### **Horizontal Rule**
  - Markdown Syntax
    ```

    ## horizontal rule below this
	---
    ```
  - Output


![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658598427718/VQ5SCQGhX.png align="left")

---

-  ### **Link**
  - Markdown Syntax

    ```

    [My Portfolio](https://www.webdevman.co.in)
    ```
  - Output


![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658598649032/BLEuTFyWh.png align="left")

---

-  ### **Image**
  - Markdown Syntax

    ```

    ![Image](https://www.webdevman.co.in/static/media/hero.5c8568c2804287a7649865cf23368e5f.svg)
    ```
  - Output


![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658598892810/ek8kQujEG.png align="left")

---

-  ### **Table**
  - Markdown Syntax

    ```

		| Table Heading | Table Heading |
		| ----------- | ----------- |
		| Table Data | Table Data |
		| Table Data | Table Data |
    ```
  - Output


![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658599072270/nr-dBLy6R.png align="left")

---

-  ### **Strikethrough**
  - Markdown Syntax

    ```

		~~Strikethrough~~
    ```
  - Output


![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658599177180/v10ThbPnG.png align="left")

---

-  ### **Code Block**
  - Markdown Syntax

    ```

		<h1>This is a heading</h1>
		<p>This is a paragraph</p>
    ```
  - Output


![image.png](https://cdn.hashnode.com/res/hashnode/image/upload/v1658599368776/mC2iGWw35.png align="left")

---

**This is all from my side. Thanks for reading.**
