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