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