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