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