Markdown is a lightweight markup language used for formatting text in a simple and readable way. Learn what Markdown is, why it's popular, and how to use it effectively.
---
title: ""
description: ""
author: ""
date: "2024-11-29"
tags: []
---
# heading1
## heading2
### heading3
simple text description
---
**bold statement**
*statement*
>software engineer
1.frontend
2.backend
3.database
1. python
2. javascript
3. java
4. c
5. cpp
- football
- cricket
- volleyball
`print("hello world")`
```python
def add(a,b):
return a+b
```
```markdown
# Heading Level 1
## Heading Level 2
### Heading Level 3
[facebook](https://facebook.com)
Link with Title (Hover Tooltip)
[Link Text](https://example.com "Optional Title")
Auto-Linking (Plain URL)
<https://example.com>
For Local Images (if supported):


Make sure photo.jpg is in a folder named images in the same directory as your Markdown file.
- [x] example
- [ ] example
### for table
| syntax | description | test |
| ---- | ---- | ----|
| header | title | demo |

