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