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