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