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