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