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