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