github markdown code example
Example 1: code in markdown
```<name of the language>
<code>
```
EXAMPLE
```python
print("Hello World")
```
Example 2: markdown image
![GitHub Logo](/images/logo.png)
Format: ![Alt Text](url)
Example 3: github link markdown
[Title](https://www.somewebsite.com)
Example 4: githum readme bold
**This text will be bold**
__This will also be bold__
_You **can** combine them_