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