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