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