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