Skip to main content
ALPHA This is a prototype and is subject to change.

Main Typography

Example

Heading 1

Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Nulla vitae elit libero, a pharetra augu.

Heading 2

Donec id elit non mi porta gravida at eget metus. Aenean lacinia bibendum nulla sed consectetur. Nullam id dolor id nibh ultricies vehicula ut id elit. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.

Heading 3

Aenean lacinia bibendum nulla sed consectetur. Nullam id dolor id nibh ultricies vehicula ut id elit. Aenean eu leo quam. Donec id elit non mi.

Heading 4

Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Nulla vitae elit libero, a pharetra augu.

Heading 5

Donec id elit non mi porta gravida at eget metus. Aenean lacinia bibendum nulla sed consectetur. Nullam id dolor id nibh ultricies vehicula ut id elit. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.

Heading 6

Aenean lacinia bibendum nulla sed consectetur. Nullam id dolor id nibh ultricies vehicula ut id elit. Aenean eu leo quam. Donec id elit non mi.

 
<h1>Heading 1</h1>
<p>Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Nulla vitae elit libero, a pharetra augu.</p>
<h2>Heading 2</h2>
<p>Donec id elit non mi porta gravida at eget metus. Aenean lacinia bibendum nulla sed consectetur. Nullam id dolor id nibh ultricies vehicula ut id elit. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p>
<h3>Heading 3</h3>
<p>Aenean lacinia bibendum nulla sed consectetur. Nullam id dolor id nibh ultricies vehicula ut id elit. Aenean eu leo quam. Donec id elit non mi.
<h4>Heading 4</h4>
<p>Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Nulla vitae elit libero, a pharetra augu.</p>
<h5>Heading 5</h5>
<p>Donec id elit non mi porta gravida at eget metus. Aenean lacinia bibendum nulla sed consectetur. Nullam id dolor id nibh ultricies vehicula ut id elit. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p>
<h6>Heading 6</h6>
<p>Aenean lacinia bibendum nulla sed consectetur. Nullam id dolor id nibh ultricies vehicula ut id elit. Aenean eu leo quam. Donec id elit non mi.

Lists

Example

  • A good point
  • Another good point
  • A more verbose counter point which goes on to explain the detailed specifics of this point at great length and detail
  • Yet another good point
  1. Do this first
  2. Then do this
  3. If you are unable to do the previous, please try turning it off or on again, or righting to your local MP.
  4. All done!
 
<ul>
  <li>A good point</li>
  <li>Another good point</li>
  <li>A more verbose counter point which goes on to explain the detailed
    specifics of this point at great length and detail</li>
  <li>Yet another good point</li>
</ul>
<ol>
  <li>Do this first</li>
  <li>Then do this</li>
  <li>If you are unable to do the previous, please try turning it off
    or on again, or righting to your local MP.</li>
  <li>All done!</li>
</ol>

Step header

Example

Step header h1 title, including following steps :Step 2 of 4

Step header sub title

 
<div class="step-header">
  <h1 class="step-header__title">Step header h1 title, including following steps
    <span class="step-header__title__steps">
      <span class="step-header__title__steps__seperator">:</span>Step 2 of 4</span>
  </h1>
  <h2 class="step-header__subtitle">Step header sub title</h2>
</div>