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