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