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