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