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