Skip to content

Using custom fonts

Daniel Cañizares Corrales edited this page Jun 29, 2019 · 5 revisions

To use custom fonts include a version of the Bootlaterus that DOES NOT contain already modified fonts.

  • Create your own CSS file.

  • Add the following snippet:

@import url('https://fonts.googleapis.com/css?family=Prompt');

.navbar, h1, h2, h3, h4, h5, h6  {
  font-family: 'Prompt' !important;
  font-weight: bold;
  text-transform: uppercase;
}
  • Customize with your own fonts.

  • Include the CSS file in your website.

Clone this wiki locally