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