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