Markdown

# Heading

Syntax

# H1

## H2

### H3

#### H4

##### H5
###### H6
Heading ID :
### Title {#title-1}

This is [title](https://example.com/#title-1).

# Text Formatting

Syntax
**Strong Text**
*Emphasized Text*
***Strong & Emphasized Text***
`code`
~~Strikethrough~~
==Marked Text==
Subscript~Text~
Superscript~Text~

# Lists

• Ordered List :
1. Item
2. Item
3. Item
• Unordered List :
- Item
- Item
- Item

# Tables

|  Item  | Cost | Stock |
| ------ | ---- | ----- |
| Apple  | 100  | 25    |
| Orange | 80   | 50    |
| Mango  | 200  | 100   |
Aligning Column :

Add a colon (:) to the beginning, end, or both to align the columns left, right, and center, respectively.

| Item    |  Cost  |  Stock |
| :------ | :----: | -----: |
| Apple   |   100  |    25  |
| Orange  |   80   |    50  |
| Mango   |   200  |    100 |

# Images

![Example Image](http://www.example.com/example.png)
Image with title :
![Example Image](http://www.example.com/example.png "Example Image")

# Code Block

`$var = "text";`
```
$num1 = 12;
$num2 = 21;

print($num1 + $num2);
```

# Blockquote

> This is blockquote.

> This is also
> Blockquote.
Nested Blockquote :
> This is blockquote.

> > This is nested blockquote.

# Task List

- [x] Task Checked
- [ ] Task
- [ ] Task

# Definition List

Term
: Term definition 1
: Term definition 2

# Footnote

This is a new project. [^1]

[^1]: Stack is: PHP, Laravel

# Horizontal Line

---