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