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