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