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