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