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