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