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