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