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