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