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