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