Text Over Color-Toned Photo

Short text over a translucent field of color, over an image.

On this page:

Best Practice

  • The large text should be succinct.
  • The smaller text can be longer, but try to keep it brief. Lengthy text will defeat the purpose of a Hero Block.
  • Don’t use more than the number of buttons shown in this Hero Block.
  • Do not use a random or decorative image.

Usage

Big Text.

This is smaller text which explains this block. This is smaller text which explains this block.

<div class="hero-text-color-toned-photo" style="background-image: url('/img/photos/pexels-photo-275030.jpeg');">
  <div class="overlay"></div>
  <div class="container-fluid">
    <div class="row justify-content-between">
      <div class="col-12 col-md-5 col-lg-4">
        <h1 class="hero-big-text">Big Text.</h1>
      </div>
    </div>
    <div class="row">
      <div class="col-12 col-md-5 col-lg-4">
        <p class="hero-small-text">This is smaller text which explains this block. This is smaller text which explains this block.</p>
      </div>
    </div>
    <div class="row">
      <div class="col-12 col-md-5 col-lg-4">
        <a href="/introduction" class="btn btn-outline-accent">Get Started</a>
      </div>
    </div>
  </div>
</div>