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