Skip to main content

Person

Component status:Ready
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

She/her/hers
Title One
Title Two
Primary Unit Name
Person headshot
<div class="bux-person">
<div class="bux-person__name">
<a class="bux-text-link" href="#">First Name Middle Name Last Name, PhD</a>
</div>

<div class="bux-person__row">
<div class="bux-person__details">
<div class="sm-gray">She/her/hers</div>
<div>Title One</div>
<div>Title Two</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 href="mailto:name.#@osu.edu" class="bux-link" target="_blank">
name.#@osu.edu
</a></span
>
</div>
<div class="bux-person__contact--row">
<span class="icon-phone bux-person__contact--row__icon"></span>

<span
><strong>Phone</strong>
<a href="tel:+15551234567" class="bux-link" target="_blank">
555-123-4567
</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