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