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