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