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