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