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