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