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