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