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