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