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