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