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