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