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