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