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