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