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