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