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