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