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