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