chromium/ash/webui/diagnostics_ui/resources/overview_card.html

<style include="diagnostics-shared">
  :host-context(body.jelly-enabled) #marketingName {
    font: var(--cros-button-2-font);
  }

  #marketingName {
    font-weight: 500;
    margin-inline-end: 4px;
  }

  #overviewCardContainer {
    align-items: center;
    display: flex;
    height: 48px;
    justify-content: center;
  }

  #overviewChip {
    margin-top: 8px;
  }
</style>
<div id="overviewCardContainer" tabindex="0"
    aria-labelledby="marketingName deviceInfo">
  <div class="diagnostics-chip" id="overviewChip">
    <span id="marketingName" aria-describedby="deviceInfo"
        hidden="[[shouldHideMarketingName(systemInfo.marketingName)]]">
      [[systemInfo.marketingName]]
    </span>
    <span id="deviceInfo" aria-hidden="true">[[deviceInfo]]</span>
  </div>
</div>