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