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