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