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