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