Skip to Main Content

Pelican Design System icon Pelican Design System Page Title

Page Title

The Page Title block explains the purpose of a page.

On this page:

Best Practices

  • Page Titles tell the user which page they’re on.
  • Pelican recommends a Page Title for every page.
  • Use the button to provide quick access to one common action for the page.
  • If a page needs more than one button, use a Bootstrap Dropdown button.
  • Remove the Badges section if you don’t need them.
  • Try to keep to just two or three Badges.
  • Most badges in the Page Title, except Warning and Danger, will be dimmed to avoid undue emphasis.
  • Use only one H1 per page. (We are using an extra one here only as a documentation sample for the component.)
  • Learn more about how to use Headings

Usage

Badge Badge Badge Badge

Page Title

Use this sentence to briefly describe the purpose of the page.

<div class="page-title">
  <div class="container-fluid">
    <div class="row">
      <!-- badges begin -->
      <div class="col-12">
        <span class="badge badge-ui">Badge</span>
        <span class="badge badge-info">Badge</span>
        <span class="badge badge-warning">Badge</span>
        <span class="badge badge-danger">Badge</span>
        <hr class="minor">
      </div>
      <!-- badges end -->
      <div class="col-12 d-lg-flex justify-content-lg-between align-items-center">
        <div class="mb-2 mb-lg-0">
          <h1 class="page-title-text">
            <span class="icon fas fa-tachometer-alt me-1" aria-hidden="true"></span>Page Title
          </h1>	
          <p class="mb-0">Use this sentence to briefly describe the purpose of the page.</p>
        </div>
        <div>
          <a href="https://google.com" class="btn btn-primary btn-shadow">
            <span class="icon fas fa-bolt me-1" aria-hidden="true"></span>Do This
          </a>
        </div>
      </div>
    </div>
  </div>
</div>
Page top