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