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