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