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