Skip to content

Add a header to the Reset Password page #66

@nbkhope

Description

@nbkhope

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)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions