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