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