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