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