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