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