| Heading |
# Header1
## Header2
### Header3
|
Header1
Header2
Header3
|
| Bold |
**bold text** |
bold text |
| Italic |
*italicized text* |
italicized text |
| Blockquote |
> blockquote |
blockquote
|
| Numbered List |
1. First item
2. Second item
3. Third item
|
- First item
- Second item
- Third item
|
| Bullet Point List |
- First item
- Second item
- Third item
|
- First item
- Second item
- Third item
|
| Code |
`code` |
code |
| Horizontal Rule |
--- |
|
| Link |
[link title](https://mittaldev.com) |
link title |
| Image |
 |
 |
| Table |
| Syntax | Description |
| --- | --- |
| Header | Title |
| Paragraph | Text |
|
| Syntax |
Description |
| Header |
Title |
| Paragraph |
Text |
|
| Fenced Code Block |
```
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
```
|
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
|
| Strikethrough |
~The world is flat.~ |
The world is flat. |
| Task List |
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
|
|