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