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