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