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