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