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