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