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