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