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