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