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