# Basic Syntax

A reference to the Markdown basic syntax elements supported by all Markdown applications.

{{< callout icon="info-circle" >}}
Refer to the [Basic Syntax](https://markdownguide.offshoot.io/basic-syntax/) reference guide from The Markdown Guide for more information.
{{< /callout >}}

## Heading

```md
# H1

## H2

### H3
```

{{< preview >}}

# H1

## H2

### H3

{{< /preview >}}

## Bold

```md
**bold text**
```

{{< preview >}}

**bold text**

{{< /preview >}}

## Italic

```md
_italicized text_
```

_italicized text_

{{< preview >}}

_italicized text_

{{< /preview >}}

## Blockquote

```md
> blockquote
```

{{< preview >}}

> blockquote

{{< /preview >}}

## Ordered List

```md
1. First item
2. Second item
3. Third item
```

{{< preview >}}

1. First item
2. Second item
3. Third item

{{< /preview >}}

## Unordered List

```md
- First item
- Second item
- Third item
```

{{< preview >}}

- First item
- Second item
- Third item

{{< /preview >}}

## Code

```md
`code`
```

{{< preview >}}

`code`

{{< /preview >}}

## Horizontal Rule

```md
---
```

{{< preview >}}

---

{{< /preview >}}

## Link

```md
[Markdown Guide](https://www.markdownguide.org)
```

{{< preview >}}

[Markdown Guide](https://www.markdownguide.org)

{{< /preview >}}

## Image

```md
![A yellow and black bird sitting on top of a body of water](images/vincent-van-zalinge-e5VzJJDODbQ-unsplash.jpg)
```

{{< preview >}}

![A yellow and black bird sitting on top of a body of water](images/vincent-van-zalinge-e5VzJJDODbQ-unsplash.jpg)

{{< /preview >}}
