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