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