Welcome to this Markdown Workbook! This guide will help you learn and practice Markdown syntax.
- Introduction
- Headings
- Text Formatting
- Lists
- Links & Images
- Code Blocks
- Tables
- Blockquotes
- Tasks
- Conclusion
Markdown is a lightweight markup language used for formatting plain text. It is widely used in documentation, blogging, and note-taking.
Use #
symbols to create headings:
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Exercise: Create a heading structure that includes all six levels.
- Bold:
**bold text**
- Italic:
*italic text*
Strikethrough:~~strikethrough~~
Inline Code
:`inline code`
Exercise: Format the sentence below in bold, italic, and strikethrough styles:
Markdown is a powerful tool!
Bold
Italics
DONE
command.sh
- Item 1
- Item 2
- Subitem 1
- Subitem 2
1. First item
2. Second item
1. Subitem A
2. Subitem B
Exercise: Create a list of your three favorite activities, using both ordered and unordered lists.
- YouTube
- Codeing
- Sleeping
`` OpenAI
### Images:
```md

Exercise: Add a link to your favorite website and an image of your choice.
Use triple backticks (print("Hello")
) to create code blocks:
print("Hello, world!")
Exercise: Write a simple Markdown code block for a Python print
statement.
| Name | Age | City |
|-------|----:|----------|
| John | 25 | New York |
| Sarah | 30 | London |
| Mark | 28 | Berlin |
Exercise: Create a table with three rows and four columns.
> This is a blockquote.
>> Nested blockquote.
Exercise: Write a motivational quote inside a blockquote.
- [x] Complete this workbook
- [X] Practice more Markdown
- [X] Create my own Markdown project
Exercise: Add three new tasks to your list.
Congratulations! You have completed the Markdown Workbook. Keep practicing to master Markdown.