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