Skip to main content

Person

A Person component displays a person’s name, contact details, and optional headshot.

A person component can be used as a single element on a webpage or can be repeated to create a directory.

Examples

Default

Title One
Title Two
Primary Unit Name
Person headshot
<div class="bux-person">
<div class="bux-person__name">
<a class="bux-text-link" href="#" rel="noopener">
<span class="bux-text-link__text">First Name Middle Name Last Name, PhD</span>
</a>
</div>
<div class="bux-person__row">
<div class="bux-person__details">
<div>
<span>Title One</span>
</div>
<div>
<span>Title Two</span>
</div>
<div class="uppercase-gray">Primary Unit Name</div>
</div>
<div class="bux-person__contact">
<div class="bux-person__contact--row">
<span class="icon-envelope bux-person__contact--row__icon"></span>
<span>
<strong>Email</strong>
<a class="bux-link bux-person__link" href="mailto:name.#@osu.edu" rel="noopener">
<span class="bux-link__text bux-person__link__text">name.#@osu.edu</span>
</a>
</span>
</div>
<div class="bux-person__contact--row">
<span class="icon-phone bux-person__contact--row__icon"></span>
<span>
<strong>Phone</strong>
<a class="bux-link bux-person__link" href="tel:+15551234567" rel="noopener">
<span class="bux-link__text bux-person__link__text">555-123-4567</span>
</a>
</span>
</div>
</div>
</div>
<div class="bux-person__image">
<img class="bux-image" src="/images/placeholders/BUX-person-headshot.jpg" alt="Person headshot" />
</div>
</div>

Usage

Dos

  • Honorifics should be included with the first and last name, not within the title(s)
  • Crop a headshot image closely to the face and neck, as shown in the example. If displaying multiple Person components on a webpage, ensure the crops among all headshots are consistent.

Don’ts

  • If a headshot is not available, do not use a placeholder, such as a Buckeye Leaf or logo. Simply allow the headshot to not display. The placement to the right of the component is intentional to account for unavailable headshots.

Accessibility

  • Email addresses and phone numbers should always be links.
Back to top