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