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