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