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