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