nbktechworld / full-stack-web-dev

6 stars 13 forks source link

Add a header to the Reset Password page #66

Open nbkhope opened 3 months ago

nbkhope commented 3 months ago

What is a header / navigation bar?

The area at the top of websites. Usually looks like this:

image

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)

nbkhope commented 3 months ago

@BrookeKanonik you might be interested in this one