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