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