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