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