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