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