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