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