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