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