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