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