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