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