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