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