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