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