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