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