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