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