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