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