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