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