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