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