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