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