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