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