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