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