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