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