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