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