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