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