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