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