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