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