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