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