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