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