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