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