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