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