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