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