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