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