Readme File Syntax

1. Typography
1# Heading level 1
2
3## Heading level 2
4
5### Heading level 3
6
7#### Heading level 4
8
9##### Heading level 5
10
11###### Heading level 6

Heading level 1

Heading level 2

Heading level 3

Heading level 4

Heading level 5

Heading level 6

Note:- Make sure to add a space after last # and must be line space after and before heading typography.
2. Bold and Italic
1**Bold Text**
2*Italic Text*

Bold Text

Italic Text

3. Paragraph
1Write text without any space in starting. <br/>
2Simple add two or more space in end of line for line break in a Paragraph.

Write text without any space in starting.
Simple add 2 or 3 space in end of line for line break in a Paragraph.

4. Blockquotes
1> To create a blockquote, add a (>) in starting of a paragraph or line.
Note:- You can test Blockquotes in a readme.md file for how it look likes.
Bonus:- You Can Preview your readme.md file in vs code, simply open your readme.md file in vs code, at right top you can see a option for open preview OR use ctr+shift+v .
5. Lists
1. simply write number in
2. starting of line
3. and don't forget
4. dot (.) after number
  1. simple write number in
  2. starting of line
  3. and don't forget
  4. dot (.) after number
- for unordered
- list
- simply write (-)
- in starting of line
  1. for unordered
  2. list
  3. simply write (-)
  4. in starting of line
Hello