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