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