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