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