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