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