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