Jupyter Notebook Markdown Cheatsheet
Particulars Input Output
Headers # Header 1
## Header 2
### Header 3
#### Header 4
Horizontal Line ***
---
___
Text color <span style='color:Blue'> Blue is my
favorite color. </span>
Text background ## <span style='background :yellow'
> Background color is yellow
</span>
Text font-family ## <span
style='font-family:Georgia'> It is
Georgia font.
## <span
style='font-family:Helvetica'> It is
Helvetica font.
Text Emphasis *Italic* or _Italic_
**Bold**
***Bold and Italic***
~~Scratch Me.~~
Text in code style `print('Hello World')`
Creator: Dayal Chand Aichara
Jupyter Notebook Markdown Cheatsheet
Particular Input Output
Blockquotes > 1 Blockquotes
>> 2 Blockquotes
>>> 3 Blockquotes
>>>> 4 Blockquotes
>>>>>>>> 8 Blockquotes
List 1. Main list <br>
a. Sub-list <br>
b. sub list
2. Main list
* main list
Table How | To | Make | a table|
| :---: | :---: | :---: | :---: |
| in | <span style=
'background:yellow'> Jupyter
</span>| <span style=
'background:yellow'> Notebook
</span>| <span style=
'background:yellow'> Markdown
</span> |
| It | is | really| cool |
Image 
Link # [My LinkedIn link
]([Link]/in/dcaichara)
Creator: Dayal Chand Aichara
Jupyter Notebook Markdown Cheatsheet
Particular Input Output
YouTube Video []([Link]
.com/watch?v=jqSuaRpCnro)
Image Link []([Link] on image it will redirect you to link
com/in/dcaichara) addresses..
Syntax ```python
highlighting A = "Python syntax highlighting"
print(A)
for i in range(0,10):
print(A)
```
Navigation within <a id =6> </a> <br> Start of
Jupyter Notebook Notebook
[Start of NoteBook](#6)
Click on the blue text line to go where
black text line starts.
Creator: Dayal Chand Aichara