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