Markdown
Lesson 1: Markdown Cheat Sheet
Markdown
- Markdown: A plain text format for writing structured documents
CheatSheet
1. headings
# H1
## H2
### H3
#### H4
##### H5
###### H6
H1
H2
H3
H4
H5
H6
2. emphasis
**BOLD**
*Italic*
***BOLD and Italic***
BOLD
Italic
BOLD and Italic
3. list
- unordered
- A
- A
- A
- A
- A
- A
- A
- A
- A
- ordered
1. A
1. A
1. A
1. B
1. A
1. A
- A
- A
- A
- B
- A
- A
4. images
![IMAGE](image.png "title")
![URLImage](URL)
5. link
[](url)
<http://url>
https://www.instagram.com/emily_daily_/
6. blockquotes
> YOLO
> blockquotes
>
> with **multiple** Paragraphs
YOLO
Blockquotes
with multiple Paragraphs
7. code
```(language)
System.out.println("Hello JAVA");
```
System.out.println("Hello JAVA");
print("Hello Python")
refer to this website Markdown CheatSheet.