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