Skip to main content

CTA in Page

Component status:Ready
This component displays a call-to-action among other content on a webpage.

A CTA in Page component displays an (optional) image, (required) title, (optional) body, and (required) Button. It is designed to appear in the Story Page template, but can be appear in other webpages. It is designed to be concise and clear, either interrupting body copy or as a final call-to-action.

Examples

Default

Graduates performing the O-H-I-O pose

Call-to-Action Headline

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce quis rhoncus ipsum. Ut eget blandit mauris, a malesuada felis. Integer in sagittis odio. Sed a odio eget tortor congue egestas. Sed lacinia dignissim libero.
Call to Action
<div class="bux-cta-in-page">
<img
class="bux-image bux-image--16x9"
src="/images/placeholders/osu-bux-5.jpg"
alt="Graduates performing the O-H-I-O pose"
/>

<h2>Call-to-Action Headline</h2>

<div class="bux-cta-in-page__text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce quis rhoncus
ipsum. Ut eget blandit mauris, a malesuada felis. Integer in sagittis odio.
Sed a odio eget tortor congue egestas. Sed lacinia dignissim libero.
</div>

<a class="bux-button" href="">Call to Action</a>
</div>

Usage

Dos

  • Write a concise heading with a clear, concise (optional) description.
  • Include an image, if possible, in order to help draw emphasis to this component.
  • Use in moderation. Limit to two components on a single webpage because multiple will detract from the webpage’s main content.
    • If using one CTA within Page component on a webpage, it is best practice to use the Primary variant of the Button.
    • If using two CTA within Page components on a webpage, it is best practice to use the Alternate variant of the Button within each component.

Don’ts

  • Don’t start content with this component. It is designed to either interrupt content or be a final call-to-action near the bottom of content on a webpage.

Accessibility

  • The CTA in Page heading is coded as an h2 heading. This is built this way to follow the h1 heading of the page title. Since CTA in Page components are meant to break out from the content of the page the h2 heading should hold.
Back to top