markdown syntax code code example

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: how to create link in readme.md

[a link] (https://github.com/user/repo/blob/branch/other_file.md)

Example 3: code in markdown

```<name of the language>
<code>
```

EXAMPLE

```python
print("Hello World")
```

Example 4: bold markdown

# Bold
I just love **bold text**.
I just love __bold text__.
Love**is**bold

# Italic
Italicized text is the *cat's meow*.
Italicized text is the _cat's meow_.
A*cat*meow

Example 5: h1 markdown

# H1
## H2
### H3
#### H4
##### H5
###### H6