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