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