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