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