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