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