Formatting Notes#
Headings
<h1>Header 1,title<h1>
<h2>Header 2,major headings<h2>
<h3>Header 3,subheadings<h3>
<h4>Header 4<h4>
<h5>Header 5<h5>
<h6>Header 6<h6>
Adding Code
```Python
str = “This is block level code”
print(str)
General Formatting
<b>This is bold text
** This is bold text
__ This is bold text
<i>This is italic text
* This is italic text
_ This is italic text
Horizontal Lines:
‘—’
<hr>
Ordered List:
<ol>
<li>Fish
<li>Eggs
<li>Cheese
</ol>
OR [n dot space] ‘1. ‘
UnOrdered List:
<ul>
<li>Fish
<li>Eggs
<li>Cheese
</ul>
OR -[space] or *[space]
#Its from here: https://www.datacamp.com/community/tutorials/markdown-in-jupyter-notebook