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