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