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