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