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