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