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