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