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