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