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