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