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