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