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