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