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