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