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