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