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