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