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