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