What is a header / navigation bar?
The area at the top of websites. Usually looks like this:

Instructions
Use <header> tag before the main content and make a header / navigation bar
Usually the header has at least the website name that links to home page when clicked.
You can use Site Title since we don't have a name.
You can either center the site name or align it to the left.
Example:
HTML
<body>
<header class="site-header">
<a href="index.html">Site Title</a>
</header>
...
CSS
.site-header {
padding: 8px;
background-color: #000000;
color: #ffffff;
}
(Change the style to what you think looks nice)
What is a header / navigation bar?
The area at the top of websites. Usually looks like this:
Instructions
Use
<header>tag before the main content and make a header / navigation barUsually the header has at least the website name that links to home page when clicked.
You can use
Site Titlesince we don't have a name.You can either center the site name or align it to the left.
Example:
HTML
CSS
(Change the style to what you think looks nice)