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