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