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