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