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