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