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