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