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