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