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