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