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