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