# Markdown Cheat-sheet

MARKDOWN helps to structure a document for easy readability. It has syntax which somewhat resembles HTML.

- ## HEADINGS

  Headings are written using the # symbol. Headings range from 1-6. The size of the heading decreases as the number of #s increase

  ```
  # Heading 1
  ## Heading 2
  ### Heading 3
  #### Heading 4
  ##### Heading 5
  ###### Heading 6
  ```

  # Heading 1

  ## Heading 2

  ### Heading 3

  #### Heading 4

  ##### Heading 5

  ###### Heading 6

  ***

- ## BOLD TEXT

  You can use **\*\* (two stars)** before and after a word to make it bold.

  ```
  **BOLD TEXT**
  ```

  > **BOLD TEXT**

  ***

- ## ITALIC TEXT

  You can use **\* (one star)** before and after a word to make it italic.

  ```
  *ITALIC TEXT*
  ```

  > _ITALIC TEXT_

  > **TIP -: You can also use \*\***(three stars) before and after a word to make it bold as well as italic.

  ***

- ## LISTS

  Lists helps to organize tasks or bullet points. There are 2 types of lists. `Ordered List` and `Unordered List`. Ordered lists are numbered and unordered lists are represented by bullet points. Numbers are used to write ordered list and hyphen( - ) is used to write unordered list

  ```
  Ordered List
  1. Task 1
  2. Task 2
  3. Task 3

  Unordered List
  - Lorem
  - Ipsum
  - Text

  ```

  > Ordered List

  1. Task 1
  1. Task 2
  1. Task 3

  > Unordered List

  - Lorem
  - Ipsum
  - Text

---

- ## URLS

  Url's are use to link a webpage or a resource on the internet.

  ```
  [Google](www.google.com)
  [Bing](www.bing.com)
  ```

  [Google](www.google.com)

  [Bing](www.bing.com)

---

- ## Images

  Images can also be inserted to display certain features of the website.

  ```
  ![Alt text if the image is not loaded](www.google.com/my-photo)
  ```

  ![A placeholder image](https://png.pngtree.com/png-clipart/20190918/ourmid/pngtree-pink-watercolor-brushes-171474-png-image_1733978.jpg)

