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