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