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