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