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