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