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