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