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