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