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