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