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