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