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