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