1# tier 1 header
2##### tier 5 header
3**bold** or __bold__
4*italic* or _italic_
5
6[link to markdown guide](https://www.markdownguide.org/basic-syntax/)
7
8> This is a quote. Quotes are indented and a different colour.
9
10show small bits of code with backticks: `print("hello world")`
11
12- [x] This is a complete item
13- [ ] This is an incomplete item
14
15you can also include html code if you want to be more specific.
16For example, this would make a picture with a width of 200:
17<img src="drawing.jpg" alt="drawing" width="200"/>
1<!-- Markdown basics !-->
2 https://www.markdownguide.org/basic-syntax/
3<!-- Cheat Sheet !-->
4 https://www.markdownguide.org/cheat-sheet/
5<!-- About Markdown, Get Started !-->
6 https://www.markdownguide.org/getting-started/
7<!-- More !-->
8 https://www.markdownguide.org/
9
1Markdown is a lightweight markup language with plain-text-formatting syntax,
2created in 2004 by John Gruber and Aaron Swartz.
3Markdown is often used for formatting readme files,
4for writing messages in online discussion forums,
5and to create rich text using a plain text editor.
1<p>An <a href="http://example.com">example</a>.</p>
2
3<p><img alt="Image" title="icon" src="Icon-pictures.png" /></p>
4
5<blockquote>
6<p>Markdown uses email-style characters for blockquoting.</p>
7</blockquote>
8
9<p>Inline <abbr title="Hypertext Markup Language">HTML</abbr> is supported.</p>
10