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