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