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