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