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