Use on the webTotal Use [ 3482 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/3eebbe02864d0e51e85d4792e7c162ec?family=Lassiter+Bold" rel="stylesheet"> 
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
  @import url(https://db.onlinewebfonts.com/c/3eebbe02864d0e51e85d4792e7c162ec?family=Lassiter+Bold); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "Lassiter Bold";
    src: url("https://db.onlinewebfonts.com/t/3eebbe02864d0e51e85d4792e7c162ec.eot");
    src: url("https://db.onlinewebfonts.com/t/3eebbe02864d0e51e85d4792e7c162ec.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/3eebbe02864d0e51e85d4792e7c162ec.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/3eebbe02864d0e51e85d4792e7c162ec.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/3eebbe02864d0e51e85d4792e7c162ec.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/3eebbe02864d0e51e85d4792e7c162ec.svg#Lassiter Bold")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "Lassiter Bold";