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