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