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