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