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