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