Headers

Let's take a look at another formatting convention: the header. As their name implies, they act like titles or subtitles above sections of text. There are six header tags available in markdown (and HTML)

In HTML headers are marked up like this:

<h1>This is header one</h1> <h2>This is header two</h2>

In Markdown they are marked up like this:

# This is header one ## This is header two

For this next lesson, make each header the right size.


And that's all there is to making headers in Markdown.

On to the next lesson!