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