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