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