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