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