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