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