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