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