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