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