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