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