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