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