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