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