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