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