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