Markdown

Markdown makes writing on the web fast and easy.

ยท

1 min read

How to Create Markdown File

Why We Use Markdown

Basically for project information we use markdown file. In this file we can add any information with photos, link etc.

Basic Syntax

  • Headline

# Heading1 
## Heading2
### Heading3
#### Heading4
##### Heading5
###### Heading6
  • Output

    Heading1

    Heading2

    Heading3

we can write H1 to H6 like HTML.

  • Bold

    **bold text**
    
  • Italic

    *italicized text*
    
  • Blockquote

    > blockquote
    
  • Ordered List

1. First item
2. Second item
3. Third item
  • Unordered List

- First item
- Second item
- Third item
  • Write Code or Highlight a Text

`code`
  • Horizontal Rule

---
  • Add Link

[title](https://www.example.com)
  • Add Image

![alt text](image.jpg)
  • Insert Code Snippet

    ```javascript
    function sum(a) {
    let = 10;
    console.log(a);
    }
    sum();
    ```
    

See The Pictures Below to Understand in Better Way

Zoom this Page to see Photos in Better Way ๐Ÿ™‚

Screenshot (39).png

Screenshot (40).png

Screenshot (41).png

Screenshot (42).png

That's All, Thank You.

ย