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