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