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