code example in markdown

Example 1: markdown table

Layout:
| Tables   |      Are      |  Cool |
|----------|:-------------:|------:|
| col 1 is |  left-aligned | $1600 |
| col 2 is |    centered   |   $12 |
| col 3 is | right-aligned |    $1 |
  
An amazing website for building a table in markdown:
https://www.tablesgenerator.com/markdown_tables

Example 2: code blocks md

```
function test() {
  console.log("notice the blank line before this function?");
}
```

Example 3: markdown image

![GitHub Logo](/images/logo.png)
Format: ![Alt Text](url)

Example 4: markdown image

![GitHub Logo](/images/logo.png)
Format: ![Alt Text](url)

Example 5: link in markdown

[Name](Link)

Tags:

Html Example