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