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