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