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