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