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