Use on the webTotal Use [ 4917 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/64a4e2ceb3cd86d25ef0daeb6fa293ca?family=Bottenbreker+T.V." 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/64a4e2ceb3cd86d25ef0daeb6fa293ca?family=Bottenbreker+T.V.); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "Bottenbreker T.V.";
    src: url("https://db.onlinewebfonts.com/t/64a4e2ceb3cd86d25ef0daeb6fa293ca.eot");
    src: url("https://db.onlinewebfonts.com/t/64a4e2ceb3cd86d25ef0daeb6fa293ca.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/64a4e2ceb3cd86d25ef0daeb6fa293ca.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/64a4e2ceb3cd86d25ef0daeb6fa293ca.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/64a4e2ceb3cd86d25ef0daeb6fa293ca.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/64a4e2ceb3cd86d25ef0daeb6fa293ca.svg#Bottenbreker T.V.")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "Bottenbreker T.V.";