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