To create our menu, we need to create a list. In HTML, to create a list you have to use the tag <ul>.
<ul> stands for unordered list; it needs to have a list tag inside <li>. You can use it as follows:
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
Our list should end up looking like this:
<header>
<ul>
<li>Upcoming events</li>
<li>Past events</li>
<li>FAQ</li>
<li>About us</li>
<li>Blog</li>
<li>Contact</li>
</ul>
</header>