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