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