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