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