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