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