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