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