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