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