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