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