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