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