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