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