-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
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)
Metadata
Metadata
Assignees
Labels
No labels
