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