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