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