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