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