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