Quotes

The Quote component is used to highlight information from an individual or organisation we want to cite.

Plain quote

The savings are incredible. It’s a no-brainer - just do it!

HTML
<figure class="blockquote-wrapper">
  <blockquote class="blockquote">
    <p>The savings are incredible. It’s a no-brainer - just do it!</p>
  </blockquote>
  <figcaption class="blockquote-footer">
    Graham<br>
    <span>Optional organisation</span>
  </figcaption>
</figure>

Quote variant 1

The savings are incredible. It’s a no-brainer - just do it!

HTML
<figure class="blockquote-wrapper green">
  <blockquote class="blockquote">
    <p>The savings are incredible. It’s a no-brainer - just do it!</p>
  </blockquote>
  <figcaption class="blockquote-footer">
    Graham<br>
    <span>Optional organisation</span>
  </figcaption>
</figure>

Quote variant 2

Quote from our leaders here to set the scene and inspire whoever is reading this.

HTML
<div class="blockquote-img yellow">
  <figure class="blockquote-wrapper">
    <blockquote class="blockquote">
      <p>Quote from our leaders here to set the scene and inspire whoever is reading this. </p>
    </blockquote>
    <figcaption class="blockquote-footer">
      Mike Thornton, Chief Executive
    </figcaption>
  </figure>
  <div class="blockquote-bg-img" style="background-image: url('../assets/example-images/quote-img.jpeg');"></div>
</div>