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