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