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