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