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