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