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