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