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