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