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