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