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