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