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