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