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