bSure Logo Implementation

bSure Logo Implementation

Primary: SVG Logo (Preferred)

bSure (SVG, preferred for all branding)
<img
  src="https://www.b-sureonline.com/bSure.svg"
  alt="bSure"
  class="logo-svg"
  width="180"
  height="auto"
/>
.logo-svg {
  max-height: 3rem;
  width: auto;
  display: block;
}

Fallback: Text-Based Logo (Rare Cases Only)

<span class="logo">
  <span class="logo-b">b</span><span class="logo-sure">Sure</span>
</span>
body {
  font-family: "Nunito Sans", sans-serif;
}

.logo {
  font-family: "Nunito Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 100;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: -0.5px;
}
.logo-b {
  color: #2599DA;
}
.logo-sure {
  color: #31AA39;
}
Font: Nunito Sans (Google Fonts)