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