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