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